What are the required steps to convert base 10 decimal system
number 184 906 624 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;
- 184 906 624 ÷ 2 = 92 453 312 + 0;
- 92 453 312 ÷ 2 = 46 226 656 + 0;
- 46 226 656 ÷ 2 = 23 113 328 + 0;
- 23 113 328 ÷ 2 = 11 556 664 + 0;
- 11 556 664 ÷ 2 = 5 778 332 + 0;
- 5 778 332 ÷ 2 = 2 889 166 + 0;
- 2 889 166 ÷ 2 = 1 444 583 + 0;
- 1 444 583 ÷ 2 = 722 291 + 1;
- 722 291 ÷ 2 = 361 145 + 1;
- 361 145 ÷ 2 = 180 572 + 1;
- 180 572 ÷ 2 = 90 286 + 0;
- 90 286 ÷ 2 = 45 143 + 0;
- 45 143 ÷ 2 = 22 571 + 1;
- 22 571 ÷ 2 = 11 285 + 1;
- 11 285 ÷ 2 = 5 642 + 1;
- 5 642 ÷ 2 = 2 821 + 0;
- 2 821 ÷ 2 = 1 410 + 1;
- 1 410 ÷ 2 = 705 + 0;
- 705 ÷ 2 = 352 + 1;
- 352 ÷ 2 = 176 + 0;
- 176 ÷ 2 = 88 + 0;
- 88 ÷ 2 = 44 + 0;
- 44 ÷ 2 = 22 + 0;
- 22 ÷ 2 = 11 + 0;
- 11 ÷ 2 = 5 + 1;
- 5 ÷ 2 = 2 + 1;
- 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.
184 906 624(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
184 906 624 (base 10) = 1011 0000 0101 0111 0011 1000 0000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.