What are the required steps to convert base 10 decimal system
number 110 100 767 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;
- 110 100 767 ÷ 2 = 55 050 383 + 1;
- 55 050 383 ÷ 2 = 27 525 191 + 1;
- 27 525 191 ÷ 2 = 13 762 595 + 1;
- 13 762 595 ÷ 2 = 6 881 297 + 1;
- 6 881 297 ÷ 2 = 3 440 648 + 1;
- 3 440 648 ÷ 2 = 1 720 324 + 0;
- 1 720 324 ÷ 2 = 860 162 + 0;
- 860 162 ÷ 2 = 430 081 + 0;
- 430 081 ÷ 2 = 215 040 + 1;
- 215 040 ÷ 2 = 107 520 + 0;
- 107 520 ÷ 2 = 53 760 + 0;
- 53 760 ÷ 2 = 26 880 + 0;
- 26 880 ÷ 2 = 13 440 + 0;
- 13 440 ÷ 2 = 6 720 + 0;
- 6 720 ÷ 2 = 3 360 + 0;
- 3 360 ÷ 2 = 1 680 + 0;
- 1 680 ÷ 2 = 840 + 0;
- 840 ÷ 2 = 420 + 0;
- 420 ÷ 2 = 210 + 0;
- 210 ÷ 2 = 105 + 0;
- 105 ÷ 2 = 52 + 1;
- 52 ÷ 2 = 26 + 0;
- 26 ÷ 2 = 13 + 0;
- 13 ÷ 2 = 6 + 1;
- 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.
110 100 767(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
110 100 767 (base 10) = 110 1001 0000 0000 0001 0001 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.