What are the required steps to convert base 10 decimal system
number 7 500 000 037 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;
- 7 500 000 037 ÷ 2 = 3 750 000 018 + 1;
- 3 750 000 018 ÷ 2 = 1 875 000 009 + 0;
- 1 875 000 009 ÷ 2 = 937 500 004 + 1;
- 937 500 004 ÷ 2 = 468 750 002 + 0;
- 468 750 002 ÷ 2 = 234 375 001 + 0;
- 234 375 001 ÷ 2 = 117 187 500 + 1;
- 117 187 500 ÷ 2 = 58 593 750 + 0;
- 58 593 750 ÷ 2 = 29 296 875 + 0;
- 29 296 875 ÷ 2 = 14 648 437 + 1;
- 14 648 437 ÷ 2 = 7 324 218 + 1;
- 7 324 218 ÷ 2 = 3 662 109 + 0;
- 3 662 109 ÷ 2 = 1 831 054 + 1;
- 1 831 054 ÷ 2 = 915 527 + 0;
- 915 527 ÷ 2 = 457 763 + 1;
- 457 763 ÷ 2 = 228 881 + 1;
- 228 881 ÷ 2 = 114 440 + 1;
- 114 440 ÷ 2 = 57 220 + 0;
- 57 220 ÷ 2 = 28 610 + 0;
- 28 610 ÷ 2 = 14 305 + 0;
- 14 305 ÷ 2 = 7 152 + 1;
- 7 152 ÷ 2 = 3 576 + 0;
- 3 576 ÷ 2 = 1 788 + 0;
- 1 788 ÷ 2 = 894 + 0;
- 894 ÷ 2 = 447 + 0;
- 447 ÷ 2 = 223 + 1;
- 223 ÷ 2 = 111 + 1;
- 111 ÷ 2 = 55 + 1;
- 55 ÷ 2 = 27 + 1;
- 27 ÷ 2 = 13 + 1;
- 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.
7 500 000 037(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
7 500 000 037 (base 10) = 1 1011 1111 0000 1000 1110 1011 0010 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.