What are the required steps to convert base 10 decimal system
number 1 804 289 114 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 804 289 114 ÷ 2 = 902 144 557 + 0;
- 902 144 557 ÷ 2 = 451 072 278 + 1;
- 451 072 278 ÷ 2 = 225 536 139 + 0;
- 225 536 139 ÷ 2 = 112 768 069 + 1;
- 112 768 069 ÷ 2 = 56 384 034 + 1;
- 56 384 034 ÷ 2 = 28 192 017 + 0;
- 28 192 017 ÷ 2 = 14 096 008 + 1;
- 14 096 008 ÷ 2 = 7 048 004 + 0;
- 7 048 004 ÷ 2 = 3 524 002 + 0;
- 3 524 002 ÷ 2 = 1 762 001 + 0;
- 1 762 001 ÷ 2 = 881 000 + 1;
- 881 000 ÷ 2 = 440 500 + 0;
- 440 500 ÷ 2 = 220 250 + 0;
- 220 250 ÷ 2 = 110 125 + 0;
- 110 125 ÷ 2 = 55 062 + 1;
- 55 062 ÷ 2 = 27 531 + 0;
- 27 531 ÷ 2 = 13 765 + 1;
- 13 765 ÷ 2 = 6 882 + 1;
- 6 882 ÷ 2 = 3 441 + 0;
- 3 441 ÷ 2 = 1 720 + 1;
- 1 720 ÷ 2 = 860 + 0;
- 860 ÷ 2 = 430 + 0;
- 430 ÷ 2 = 215 + 0;
- 215 ÷ 2 = 107 + 1;
- 107 ÷ 2 = 53 + 1;
- 53 ÷ 2 = 26 + 1;
- 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.
1 804 289 114(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 804 289 114 (base 10) = 110 1011 1000 1011 0100 0100 0101 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.