What are the required steps to convert base 10 decimal system
number 20 311 821 199 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;
- 20 311 821 199 ÷ 2 = 10 155 910 599 + 1;
- 10 155 910 599 ÷ 2 = 5 077 955 299 + 1;
- 5 077 955 299 ÷ 2 = 2 538 977 649 + 1;
- 2 538 977 649 ÷ 2 = 1 269 488 824 + 1;
- 1 269 488 824 ÷ 2 = 634 744 412 + 0;
- 634 744 412 ÷ 2 = 317 372 206 + 0;
- 317 372 206 ÷ 2 = 158 686 103 + 0;
- 158 686 103 ÷ 2 = 79 343 051 + 1;
- 79 343 051 ÷ 2 = 39 671 525 + 1;
- 39 671 525 ÷ 2 = 19 835 762 + 1;
- 19 835 762 ÷ 2 = 9 917 881 + 0;
- 9 917 881 ÷ 2 = 4 958 940 + 1;
- 4 958 940 ÷ 2 = 2 479 470 + 0;
- 2 479 470 ÷ 2 = 1 239 735 + 0;
- 1 239 735 ÷ 2 = 619 867 + 1;
- 619 867 ÷ 2 = 309 933 + 1;
- 309 933 ÷ 2 = 154 966 + 1;
- 154 966 ÷ 2 = 77 483 + 0;
- 77 483 ÷ 2 = 38 741 + 1;
- 38 741 ÷ 2 = 19 370 + 1;
- 19 370 ÷ 2 = 9 685 + 0;
- 9 685 ÷ 2 = 4 842 + 1;
- 4 842 ÷ 2 = 2 421 + 0;
- 2 421 ÷ 2 = 1 210 + 1;
- 1 210 ÷ 2 = 605 + 0;
- 605 ÷ 2 = 302 + 1;
- 302 ÷ 2 = 151 + 0;
- 151 ÷ 2 = 75 + 1;
- 75 ÷ 2 = 37 + 1;
- 37 ÷ 2 = 18 + 1;
- 18 ÷ 2 = 9 + 0;
- 9 ÷ 2 = 4 + 1;
- 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.
20 311 821 199(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
20 311 821 199 (base 10) = 100 1011 1010 1010 1101 1100 1011 1000 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.