What are the required steps to convert base 10 decimal system
number 752 116 306 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;
- 752 116 306 ÷ 2 = 376 058 153 + 0;
- 376 058 153 ÷ 2 = 188 029 076 + 1;
- 188 029 076 ÷ 2 = 94 014 538 + 0;
- 94 014 538 ÷ 2 = 47 007 269 + 0;
- 47 007 269 ÷ 2 = 23 503 634 + 1;
- 23 503 634 ÷ 2 = 11 751 817 + 0;
- 11 751 817 ÷ 2 = 5 875 908 + 1;
- 5 875 908 ÷ 2 = 2 937 954 + 0;
- 2 937 954 ÷ 2 = 1 468 977 + 0;
- 1 468 977 ÷ 2 = 734 488 + 1;
- 734 488 ÷ 2 = 367 244 + 0;
- 367 244 ÷ 2 = 183 622 + 0;
- 183 622 ÷ 2 = 91 811 + 0;
- 91 811 ÷ 2 = 45 905 + 1;
- 45 905 ÷ 2 = 22 952 + 1;
- 22 952 ÷ 2 = 11 476 + 0;
- 11 476 ÷ 2 = 5 738 + 0;
- 5 738 ÷ 2 = 2 869 + 0;
- 2 869 ÷ 2 = 1 434 + 1;
- 1 434 ÷ 2 = 717 + 0;
- 717 ÷ 2 = 358 + 1;
- 358 ÷ 2 = 179 + 0;
- 179 ÷ 2 = 89 + 1;
- 89 ÷ 2 = 44 + 1;
- 44 ÷ 2 = 22 + 0;
- 22 ÷ 2 = 11 + 0;
- 11 ÷ 2 = 5 + 1;
- 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.
752 116 306(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
752 116 306 (base 10) = 10 1100 1101 0100 0110 0010 0101 0010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.