What are the required steps to convert base 10 decimal system
number 110 107 289 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;
- 110 107 289 ÷ 2 = 55 053 644 + 1;
- 55 053 644 ÷ 2 = 27 526 822 + 0;
- 27 526 822 ÷ 2 = 13 763 411 + 0;
- 13 763 411 ÷ 2 = 6 881 705 + 1;
- 6 881 705 ÷ 2 = 3 440 852 + 1;
- 3 440 852 ÷ 2 = 1 720 426 + 0;
- 1 720 426 ÷ 2 = 860 213 + 0;
- 860 213 ÷ 2 = 430 106 + 1;
- 430 106 ÷ 2 = 215 053 + 0;
- 215 053 ÷ 2 = 107 526 + 1;
- 107 526 ÷ 2 = 53 763 + 0;
- 53 763 ÷ 2 = 26 881 + 1;
- 26 881 ÷ 2 = 13 440 + 1;
- 13 440 ÷ 2 = 6 720 + 0;
- 6 720 ÷ 2 = 3 360 + 0;
- 3 360 ÷ 2 = 1 680 + 0;
- 1 680 ÷ 2 = 840 + 0;
- 840 ÷ 2 = 420 + 0;
- 420 ÷ 2 = 210 + 0;
- 210 ÷ 2 = 105 + 0;
- 105 ÷ 2 = 52 + 1;
- 52 ÷ 2 = 26 + 0;
- 26 ÷ 2 = 13 + 0;
- 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.
110 107 289(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
110 107 289 (base 10) = 110 1001 0000 0001 1010 1001 1001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.