What are the required steps to convert base 10 decimal system
number 414 938 390 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;
- 414 938 390 ÷ 2 = 207 469 195 + 0;
- 207 469 195 ÷ 2 = 103 734 597 + 1;
- 103 734 597 ÷ 2 = 51 867 298 + 1;
- 51 867 298 ÷ 2 = 25 933 649 + 0;
- 25 933 649 ÷ 2 = 12 966 824 + 1;
- 12 966 824 ÷ 2 = 6 483 412 + 0;
- 6 483 412 ÷ 2 = 3 241 706 + 0;
- 3 241 706 ÷ 2 = 1 620 853 + 0;
- 1 620 853 ÷ 2 = 810 426 + 1;
- 810 426 ÷ 2 = 405 213 + 0;
- 405 213 ÷ 2 = 202 606 + 1;
- 202 606 ÷ 2 = 101 303 + 0;
- 101 303 ÷ 2 = 50 651 + 1;
- 50 651 ÷ 2 = 25 325 + 1;
- 25 325 ÷ 2 = 12 662 + 1;
- 12 662 ÷ 2 = 6 331 + 0;
- 6 331 ÷ 2 = 3 165 + 1;
- 3 165 ÷ 2 = 1 582 + 1;
- 1 582 ÷ 2 = 791 + 0;
- 791 ÷ 2 = 395 + 1;
- 395 ÷ 2 = 197 + 1;
- 197 ÷ 2 = 98 + 1;
- 98 ÷ 2 = 49 + 0;
- 49 ÷ 2 = 24 + 1;
- 24 ÷ 2 = 12 + 0;
- 12 ÷ 2 = 6 + 0;
- 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.
414 938 390(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
414 938 390 (base 10) = 1 1000 1011 1011 0111 0101 0001 0110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.