What are the required steps to convert base 10 decimal system
number 28 312 891 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;
- 28 312 891 ÷ 2 = 14 156 445 + 1;
- 14 156 445 ÷ 2 = 7 078 222 + 1;
- 7 078 222 ÷ 2 = 3 539 111 + 0;
- 3 539 111 ÷ 2 = 1 769 555 + 1;
- 1 769 555 ÷ 2 = 884 777 + 1;
- 884 777 ÷ 2 = 442 388 + 1;
- 442 388 ÷ 2 = 221 194 + 0;
- 221 194 ÷ 2 = 110 597 + 0;
- 110 597 ÷ 2 = 55 298 + 1;
- 55 298 ÷ 2 = 27 649 + 0;
- 27 649 ÷ 2 = 13 824 + 1;
- 13 824 ÷ 2 = 6 912 + 0;
- 6 912 ÷ 2 = 3 456 + 0;
- 3 456 ÷ 2 = 1 728 + 0;
- 1 728 ÷ 2 = 864 + 0;
- 864 ÷ 2 = 432 + 0;
- 432 ÷ 2 = 216 + 0;
- 216 ÷ 2 = 108 + 0;
- 108 ÷ 2 = 54 + 0;
- 54 ÷ 2 = 27 + 0;
- 27 ÷ 2 = 13 + 1;
- 13 ÷ 2 = 6 + 1;
- 6 ÷ 2 = 3 + 0;
- 3 ÷ 2 = 1 + 1;
- 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.
28 312 891(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
28 312 891 (base 10) = 1 1011 0000 0000 0101 0011 1011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.