What are the required steps to convert base 10 decimal system
number 106 060 358 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;
- 106 060 358 ÷ 2 = 53 030 179 + 0;
- 53 030 179 ÷ 2 = 26 515 089 + 1;
- 26 515 089 ÷ 2 = 13 257 544 + 1;
- 13 257 544 ÷ 2 = 6 628 772 + 0;
- 6 628 772 ÷ 2 = 3 314 386 + 0;
- 3 314 386 ÷ 2 = 1 657 193 + 0;
- 1 657 193 ÷ 2 = 828 596 + 1;
- 828 596 ÷ 2 = 414 298 + 0;
- 414 298 ÷ 2 = 207 149 + 0;
- 207 149 ÷ 2 = 103 574 + 1;
- 103 574 ÷ 2 = 51 787 + 0;
- 51 787 ÷ 2 = 25 893 + 1;
- 25 893 ÷ 2 = 12 946 + 1;
- 12 946 ÷ 2 = 6 473 + 0;
- 6 473 ÷ 2 = 3 236 + 1;
- 3 236 ÷ 2 = 1 618 + 0;
- 1 618 ÷ 2 = 809 + 0;
- 809 ÷ 2 = 404 + 1;
- 404 ÷ 2 = 202 + 0;
- 202 ÷ 2 = 101 + 0;
- 101 ÷ 2 = 50 + 1;
- 50 ÷ 2 = 25 + 0;
- 25 ÷ 2 = 12 + 1;
- 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.
106 060 358(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
106 060 358 (base 10) = 110 0101 0010 0101 1010 0100 0110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.