What are the required steps to convert base 10 decimal system
number 84 688 897 865 651 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;
- 84 688 897 865 651 ÷ 2 = 42 344 448 932 825 + 1;
- 42 344 448 932 825 ÷ 2 = 21 172 224 466 412 + 1;
- 21 172 224 466 412 ÷ 2 = 10 586 112 233 206 + 0;
- 10 586 112 233 206 ÷ 2 = 5 293 056 116 603 + 0;
- 5 293 056 116 603 ÷ 2 = 2 646 528 058 301 + 1;
- 2 646 528 058 301 ÷ 2 = 1 323 264 029 150 + 1;
- 1 323 264 029 150 ÷ 2 = 661 632 014 575 + 0;
- 661 632 014 575 ÷ 2 = 330 816 007 287 + 1;
- 330 816 007 287 ÷ 2 = 165 408 003 643 + 1;
- 165 408 003 643 ÷ 2 = 82 704 001 821 + 1;
- 82 704 001 821 ÷ 2 = 41 352 000 910 + 1;
- 41 352 000 910 ÷ 2 = 20 676 000 455 + 0;
- 20 676 000 455 ÷ 2 = 10 338 000 227 + 1;
- 10 338 000 227 ÷ 2 = 5 169 000 113 + 1;
- 5 169 000 113 ÷ 2 = 2 584 500 056 + 1;
- 2 584 500 056 ÷ 2 = 1 292 250 028 + 0;
- 1 292 250 028 ÷ 2 = 646 125 014 + 0;
- 646 125 014 ÷ 2 = 323 062 507 + 0;
- 323 062 507 ÷ 2 = 161 531 253 + 1;
- 161 531 253 ÷ 2 = 80 765 626 + 1;
- 80 765 626 ÷ 2 = 40 382 813 + 0;
- 40 382 813 ÷ 2 = 20 191 406 + 1;
- 20 191 406 ÷ 2 = 10 095 703 + 0;
- 10 095 703 ÷ 2 = 5 047 851 + 1;
- 5 047 851 ÷ 2 = 2 523 925 + 1;
- 2 523 925 ÷ 2 = 1 261 962 + 1;
- 1 261 962 ÷ 2 = 630 981 + 0;
- 630 981 ÷ 2 = 315 490 + 1;
- 315 490 ÷ 2 = 157 745 + 0;
- 157 745 ÷ 2 = 78 872 + 1;
- 78 872 ÷ 2 = 39 436 + 0;
- 39 436 ÷ 2 = 19 718 + 0;
- 19 718 ÷ 2 = 9 859 + 0;
- 9 859 ÷ 2 = 4 929 + 1;
- 4 929 ÷ 2 = 2 464 + 1;
- 2 464 ÷ 2 = 1 232 + 0;
- 1 232 ÷ 2 = 616 + 0;
- 616 ÷ 2 = 308 + 0;
- 308 ÷ 2 = 154 + 0;
- 154 ÷ 2 = 77 + 0;
- 77 ÷ 2 = 38 + 1;
- 38 ÷ 2 = 19 + 0;
- 19 ÷ 2 = 9 + 1;
- 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.
84 688 897 865 651(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
84 688 897 865 651 (base 10) = 100 1101 0000 0110 0010 1011 1010 1100 0111 0111 1011 0011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.