What are the required steps to convert base 10 decimal system
number 39 662 419 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;
- 39 662 419 ÷ 2 = 19 831 209 + 1;
- 19 831 209 ÷ 2 = 9 915 604 + 1;
- 9 915 604 ÷ 2 = 4 957 802 + 0;
- 4 957 802 ÷ 2 = 2 478 901 + 0;
- 2 478 901 ÷ 2 = 1 239 450 + 1;
- 1 239 450 ÷ 2 = 619 725 + 0;
- 619 725 ÷ 2 = 309 862 + 1;
- 309 862 ÷ 2 = 154 931 + 0;
- 154 931 ÷ 2 = 77 465 + 1;
- 77 465 ÷ 2 = 38 732 + 1;
- 38 732 ÷ 2 = 19 366 + 0;
- 19 366 ÷ 2 = 9 683 + 0;
- 9 683 ÷ 2 = 4 841 + 1;
- 4 841 ÷ 2 = 2 420 + 1;
- 2 420 ÷ 2 = 1 210 + 0;
- 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.
39 662 419(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
39 662 419 (base 10) = 10 0101 1101 0011 0011 0101 0011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.