What are the required steps to convert base 10 decimal system
number 21 489 529 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;
- 21 489 529 ÷ 2 = 10 744 764 + 1;
- 10 744 764 ÷ 2 = 5 372 382 + 0;
- 5 372 382 ÷ 2 = 2 686 191 + 0;
- 2 686 191 ÷ 2 = 1 343 095 + 1;
- 1 343 095 ÷ 2 = 671 547 + 1;
- 671 547 ÷ 2 = 335 773 + 1;
- 335 773 ÷ 2 = 167 886 + 1;
- 167 886 ÷ 2 = 83 943 + 0;
- 83 943 ÷ 2 = 41 971 + 1;
- 41 971 ÷ 2 = 20 985 + 1;
- 20 985 ÷ 2 = 10 492 + 1;
- 10 492 ÷ 2 = 5 246 + 0;
- 5 246 ÷ 2 = 2 623 + 0;
- 2 623 ÷ 2 = 1 311 + 1;
- 1 311 ÷ 2 = 655 + 1;
- 655 ÷ 2 = 327 + 1;
- 327 ÷ 2 = 163 + 1;
- 163 ÷ 2 = 81 + 1;
- 81 ÷ 2 = 40 + 1;
- 40 ÷ 2 = 20 + 0;
- 20 ÷ 2 = 10 + 0;
- 10 ÷ 2 = 5 + 0;
- 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.
21 489 529(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
21 489 529 (base 10) = 1 0100 0111 1110 0111 0111 1001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.