What are the required steps to convert base 10 decimal system
number 39 661 452 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 661 452 ÷ 2 = 19 830 726 + 0;
- 19 830 726 ÷ 2 = 9 915 363 + 0;
- 9 915 363 ÷ 2 = 4 957 681 + 1;
- 4 957 681 ÷ 2 = 2 478 840 + 1;
- 2 478 840 ÷ 2 = 1 239 420 + 0;
- 1 239 420 ÷ 2 = 619 710 + 0;
- 619 710 ÷ 2 = 309 855 + 0;
- 309 855 ÷ 2 = 154 927 + 1;
- 154 927 ÷ 2 = 77 463 + 1;
- 77 463 ÷ 2 = 38 731 + 1;
- 38 731 ÷ 2 = 19 365 + 1;
- 19 365 ÷ 2 = 9 682 + 1;
- 9 682 ÷ 2 = 4 841 + 0;
- 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 661 452(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
39 661 452 (base 10) = 10 0101 1101 0010 1111 1000 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.