What are the required steps to convert base 10 decimal system
number 1 113 282 478 to base 2 unsigned binary equivalent?
- A number written in base ten, or a decimal system number, is a number written using the digits 0 through 9. A number written in base two, or a binary system number, is a number written using only the digits 0 and 1.
1. Divide the number repeatedly by 2:
Keep track of each remainder.
Stop when you get a quotient that is equal to zero.
- division = quotient + remainder;
- 1 113 282 478 ÷ 2 = 556 641 239 + 0;
- 556 641 239 ÷ 2 = 278 320 619 + 1;
- 278 320 619 ÷ 2 = 139 160 309 + 1;
- 139 160 309 ÷ 2 = 69 580 154 + 1;
- 69 580 154 ÷ 2 = 34 790 077 + 0;
- 34 790 077 ÷ 2 = 17 395 038 + 1;
- 17 395 038 ÷ 2 = 8 697 519 + 0;
- 8 697 519 ÷ 2 = 4 348 759 + 1;
- 4 348 759 ÷ 2 = 2 174 379 + 1;
- 2 174 379 ÷ 2 = 1 087 189 + 1;
- 1 087 189 ÷ 2 = 543 594 + 1;
- 543 594 ÷ 2 = 271 797 + 0;
- 271 797 ÷ 2 = 135 898 + 1;
- 135 898 ÷ 2 = 67 949 + 0;
- 67 949 ÷ 2 = 33 974 + 1;
- 33 974 ÷ 2 = 16 987 + 0;
- 16 987 ÷ 2 = 8 493 + 1;
- 8 493 ÷ 2 = 4 246 + 1;
- 4 246 ÷ 2 = 2 123 + 0;
- 2 123 ÷ 2 = 1 061 + 1;
- 1 061 ÷ 2 = 530 + 1;
- 530 ÷ 2 = 265 + 0;
- 265 ÷ 2 = 132 + 1;
- 132 ÷ 2 = 66 + 0;
- 66 ÷ 2 = 33 + 0;
- 33 ÷ 2 = 16 + 1;
- 16 ÷ 2 = 8 + 0;
- 8 ÷ 2 = 4 + 0;
- 4 ÷ 2 = 2 + 0;
- 2 ÷ 2 = 1 + 0;
- 1 ÷ 2 = 0 + 1;
2. Construct the base 2 representation of the positive number:
Take all the remainders starting from the bottom of the list constructed above.
1 113 282 478(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 113 282 478 (base 10) = 100 0010 0101 1011 0101 0111 1010 1110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.