What are the required steps to convert base 10 decimal system
number 10 001 100 010 808 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;
- 10 001 100 010 808 ÷ 2 = 5 000 550 005 404 + 0;
- 5 000 550 005 404 ÷ 2 = 2 500 275 002 702 + 0;
- 2 500 275 002 702 ÷ 2 = 1 250 137 501 351 + 0;
- 1 250 137 501 351 ÷ 2 = 625 068 750 675 + 1;
- 625 068 750 675 ÷ 2 = 312 534 375 337 + 1;
- 312 534 375 337 ÷ 2 = 156 267 187 668 + 1;
- 156 267 187 668 ÷ 2 = 78 133 593 834 + 0;
- 78 133 593 834 ÷ 2 = 39 066 796 917 + 0;
- 39 066 796 917 ÷ 2 = 19 533 398 458 + 1;
- 19 533 398 458 ÷ 2 = 9 766 699 229 + 0;
- 9 766 699 229 ÷ 2 = 4 883 349 614 + 1;
- 4 883 349 614 ÷ 2 = 2 441 674 807 + 0;
- 2 441 674 807 ÷ 2 = 1 220 837 403 + 1;
- 1 220 837 403 ÷ 2 = 610 418 701 + 1;
- 610 418 701 ÷ 2 = 305 209 350 + 1;
- 305 209 350 ÷ 2 = 152 604 675 + 0;
- 152 604 675 ÷ 2 = 76 302 337 + 1;
- 76 302 337 ÷ 2 = 38 151 168 + 1;
- 38 151 168 ÷ 2 = 19 075 584 + 0;
- 19 075 584 ÷ 2 = 9 537 792 + 0;
- 9 537 792 ÷ 2 = 4 768 896 + 0;
- 4 768 896 ÷ 2 = 2 384 448 + 0;
- 2 384 448 ÷ 2 = 1 192 224 + 0;
- 1 192 224 ÷ 2 = 596 112 + 0;
- 596 112 ÷ 2 = 298 056 + 0;
- 298 056 ÷ 2 = 149 028 + 0;
- 149 028 ÷ 2 = 74 514 + 0;
- 74 514 ÷ 2 = 37 257 + 0;
- 37 257 ÷ 2 = 18 628 + 1;
- 18 628 ÷ 2 = 9 314 + 0;
- 9 314 ÷ 2 = 4 657 + 0;
- 4 657 ÷ 2 = 2 328 + 1;
- 2 328 ÷ 2 = 1 164 + 0;
- 1 164 ÷ 2 = 582 + 0;
- 582 ÷ 2 = 291 + 0;
- 291 ÷ 2 = 145 + 1;
- 145 ÷ 2 = 72 + 1;
- 72 ÷ 2 = 36 + 0;
- 36 ÷ 2 = 18 + 0;
- 18 ÷ 2 = 9 + 0;
- 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.
10 001 100 010 808(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
10 001 100 010 808 (base 10) = 1001 0001 1000 1001 0000 0000 0011 0111 0101 0011 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.