What are the required steps to convert base 10 decimal system
number 2 811 636 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;
- 2 811 636 ÷ 2 = 1 405 818 + 0;
- 1 405 818 ÷ 2 = 702 909 + 0;
- 702 909 ÷ 2 = 351 454 + 1;
- 351 454 ÷ 2 = 175 727 + 0;
- 175 727 ÷ 2 = 87 863 + 1;
- 87 863 ÷ 2 = 43 931 + 1;
- 43 931 ÷ 2 = 21 965 + 1;
- 21 965 ÷ 2 = 10 982 + 1;
- 10 982 ÷ 2 = 5 491 + 0;
- 5 491 ÷ 2 = 2 745 + 1;
- 2 745 ÷ 2 = 1 372 + 1;
- 1 372 ÷ 2 = 686 + 0;
- 686 ÷ 2 = 343 + 0;
- 343 ÷ 2 = 171 + 1;
- 171 ÷ 2 = 85 + 1;
- 85 ÷ 2 = 42 + 1;
- 42 ÷ 2 = 21 + 0;
- 21 ÷ 2 = 10 + 1;
- 10 ÷ 2 = 5 + 0;
- 5 ÷ 2 = 2 + 1;
- 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.
2 811 636(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
2 811 636 (base 10) = 10 1010 1110 0110 1111 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.