What are the required steps to convert base 10 decimal system
number 17 043 466 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;
- 17 043 466 ÷ 2 = 8 521 733 + 0;
- 8 521 733 ÷ 2 = 4 260 866 + 1;
- 4 260 866 ÷ 2 = 2 130 433 + 0;
- 2 130 433 ÷ 2 = 1 065 216 + 1;
- 1 065 216 ÷ 2 = 532 608 + 0;
- 532 608 ÷ 2 = 266 304 + 0;
- 266 304 ÷ 2 = 133 152 + 0;
- 133 152 ÷ 2 = 66 576 + 0;
- 66 576 ÷ 2 = 33 288 + 0;
- 33 288 ÷ 2 = 16 644 + 0;
- 16 644 ÷ 2 = 8 322 + 0;
- 8 322 ÷ 2 = 4 161 + 0;
- 4 161 ÷ 2 = 2 080 + 1;
- 2 080 ÷ 2 = 1 040 + 0;
- 1 040 ÷ 2 = 520 + 0;
- 520 ÷ 2 = 260 + 0;
- 260 ÷ 2 = 130 + 0;
- 130 ÷ 2 = 65 + 0;
- 65 ÷ 2 = 32 + 1;
- 32 ÷ 2 = 16 + 0;
- 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.
17 043 466(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
17 043 466 (base 10) = 1 0000 0100 0001 0000 0000 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.