What are the required steps to convert base 10 decimal system
number 932 820 590 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;
- 932 820 590 ÷ 2 = 466 410 295 + 0;
- 466 410 295 ÷ 2 = 233 205 147 + 1;
- 233 205 147 ÷ 2 = 116 602 573 + 1;
- 116 602 573 ÷ 2 = 58 301 286 + 1;
- 58 301 286 ÷ 2 = 29 150 643 + 0;
- 29 150 643 ÷ 2 = 14 575 321 + 1;
- 14 575 321 ÷ 2 = 7 287 660 + 1;
- 7 287 660 ÷ 2 = 3 643 830 + 0;
- 3 643 830 ÷ 2 = 1 821 915 + 0;
- 1 821 915 ÷ 2 = 910 957 + 1;
- 910 957 ÷ 2 = 455 478 + 1;
- 455 478 ÷ 2 = 227 739 + 0;
- 227 739 ÷ 2 = 113 869 + 1;
- 113 869 ÷ 2 = 56 934 + 1;
- 56 934 ÷ 2 = 28 467 + 0;
- 28 467 ÷ 2 = 14 233 + 1;
- 14 233 ÷ 2 = 7 116 + 1;
- 7 116 ÷ 2 = 3 558 + 0;
- 3 558 ÷ 2 = 1 779 + 0;
- 1 779 ÷ 2 = 889 + 1;
- 889 ÷ 2 = 444 + 1;
- 444 ÷ 2 = 222 + 0;
- 222 ÷ 2 = 111 + 0;
- 111 ÷ 2 = 55 + 1;
- 55 ÷ 2 = 27 + 1;
- 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.
932 820 590(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
932 820 590 (base 10) = 11 0111 1001 1001 1011 0110 0110 1110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.