What are the required steps to convert base 10 decimal system
number 98 765 411 765 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;
- 98 765 411 765 ÷ 2 = 49 382 705 882 + 1;
- 49 382 705 882 ÷ 2 = 24 691 352 941 + 0;
- 24 691 352 941 ÷ 2 = 12 345 676 470 + 1;
- 12 345 676 470 ÷ 2 = 6 172 838 235 + 0;
- 6 172 838 235 ÷ 2 = 3 086 419 117 + 1;
- 3 086 419 117 ÷ 2 = 1 543 209 558 + 1;
- 1 543 209 558 ÷ 2 = 771 604 779 + 0;
- 771 604 779 ÷ 2 = 385 802 389 + 1;
- 385 802 389 ÷ 2 = 192 901 194 + 1;
- 192 901 194 ÷ 2 = 96 450 597 + 0;
- 96 450 597 ÷ 2 = 48 225 298 + 1;
- 48 225 298 ÷ 2 = 24 112 649 + 0;
- 24 112 649 ÷ 2 = 12 056 324 + 1;
- 12 056 324 ÷ 2 = 6 028 162 + 0;
- 6 028 162 ÷ 2 = 3 014 081 + 0;
- 3 014 081 ÷ 2 = 1 507 040 + 1;
- 1 507 040 ÷ 2 = 753 520 + 0;
- 753 520 ÷ 2 = 376 760 + 0;
- 376 760 ÷ 2 = 188 380 + 0;
- 188 380 ÷ 2 = 94 190 + 0;
- 94 190 ÷ 2 = 47 095 + 0;
- 47 095 ÷ 2 = 23 547 + 1;
- 23 547 ÷ 2 = 11 773 + 1;
- 11 773 ÷ 2 = 5 886 + 1;
- 5 886 ÷ 2 = 2 943 + 0;
- 2 943 ÷ 2 = 1 471 + 1;
- 1 471 ÷ 2 = 735 + 1;
- 735 ÷ 2 = 367 + 1;
- 367 ÷ 2 = 183 + 1;
- 183 ÷ 2 = 91 + 1;
- 91 ÷ 2 = 45 + 1;
- 45 ÷ 2 = 22 + 1;
- 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.
98 765 411 765(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
98 765 411 765 (base 10) = 1 0110 1111 1110 1110 0000 1001 0101 1011 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.