What are the required steps to convert base 10 decimal system
number 648 031 103 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;
- 648 031 103 ÷ 2 = 324 015 551 + 1;
- 324 015 551 ÷ 2 = 162 007 775 + 1;
- 162 007 775 ÷ 2 = 81 003 887 + 1;
- 81 003 887 ÷ 2 = 40 501 943 + 1;
- 40 501 943 ÷ 2 = 20 250 971 + 1;
- 20 250 971 ÷ 2 = 10 125 485 + 1;
- 10 125 485 ÷ 2 = 5 062 742 + 1;
- 5 062 742 ÷ 2 = 2 531 371 + 0;
- 2 531 371 ÷ 2 = 1 265 685 + 1;
- 1 265 685 ÷ 2 = 632 842 + 1;
- 632 842 ÷ 2 = 316 421 + 0;
- 316 421 ÷ 2 = 158 210 + 1;
- 158 210 ÷ 2 = 79 105 + 0;
- 79 105 ÷ 2 = 39 552 + 1;
- 39 552 ÷ 2 = 19 776 + 0;
- 19 776 ÷ 2 = 9 888 + 0;
- 9 888 ÷ 2 = 4 944 + 0;
- 4 944 ÷ 2 = 2 472 + 0;
- 2 472 ÷ 2 = 1 236 + 0;
- 1 236 ÷ 2 = 618 + 0;
- 618 ÷ 2 = 309 + 0;
- 309 ÷ 2 = 154 + 1;
- 154 ÷ 2 = 77 + 0;
- 77 ÷ 2 = 38 + 1;
- 38 ÷ 2 = 19 + 0;
- 19 ÷ 2 = 9 + 1;
- 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.
648 031 103(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
648 031 103 (base 10) = 10 0110 1010 0000 0010 1011 0111 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.