What are the required steps to convert base 10 decimal system
number 75 996 974 348 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;
- 75 996 974 348 ÷ 2 = 37 998 487 174 + 0;
- 37 998 487 174 ÷ 2 = 18 999 243 587 + 0;
- 18 999 243 587 ÷ 2 = 9 499 621 793 + 1;
- 9 499 621 793 ÷ 2 = 4 749 810 896 + 1;
- 4 749 810 896 ÷ 2 = 2 374 905 448 + 0;
- 2 374 905 448 ÷ 2 = 1 187 452 724 + 0;
- 1 187 452 724 ÷ 2 = 593 726 362 + 0;
- 593 726 362 ÷ 2 = 296 863 181 + 0;
- 296 863 181 ÷ 2 = 148 431 590 + 1;
- 148 431 590 ÷ 2 = 74 215 795 + 0;
- 74 215 795 ÷ 2 = 37 107 897 + 1;
- 37 107 897 ÷ 2 = 18 553 948 + 1;
- 18 553 948 ÷ 2 = 9 276 974 + 0;
- 9 276 974 ÷ 2 = 4 638 487 + 0;
- 4 638 487 ÷ 2 = 2 319 243 + 1;
- 2 319 243 ÷ 2 = 1 159 621 + 1;
- 1 159 621 ÷ 2 = 579 810 + 1;
- 579 810 ÷ 2 = 289 905 + 0;
- 289 905 ÷ 2 = 144 952 + 1;
- 144 952 ÷ 2 = 72 476 + 0;
- 72 476 ÷ 2 = 36 238 + 0;
- 36 238 ÷ 2 = 18 119 + 0;
- 18 119 ÷ 2 = 9 059 + 1;
- 9 059 ÷ 2 = 4 529 + 1;
- 4 529 ÷ 2 = 2 264 + 1;
- 2 264 ÷ 2 = 1 132 + 0;
- 1 132 ÷ 2 = 566 + 0;
- 566 ÷ 2 = 283 + 0;
- 283 ÷ 2 = 141 + 1;
- 141 ÷ 2 = 70 + 1;
- 70 ÷ 2 = 35 + 0;
- 35 ÷ 2 = 17 + 1;
- 17 ÷ 2 = 8 + 1;
- 8 ÷ 2 = 4 + 0;
- 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.
75 996 974 348(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
75 996 974 348 (base 10) = 1 0001 1011 0001 1100 0101 1100 1101 0000 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.