What are the required steps to convert base 10 decimal system
number 1 008 812 914 313 789 286 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;
- 1 008 812 914 313 789 286 ÷ 2 = 504 406 457 156 894 643 + 0;
- 504 406 457 156 894 643 ÷ 2 = 252 203 228 578 447 321 + 1;
- 252 203 228 578 447 321 ÷ 2 = 126 101 614 289 223 660 + 1;
- 126 101 614 289 223 660 ÷ 2 = 63 050 807 144 611 830 + 0;
- 63 050 807 144 611 830 ÷ 2 = 31 525 403 572 305 915 + 0;
- 31 525 403 572 305 915 ÷ 2 = 15 762 701 786 152 957 + 1;
- 15 762 701 786 152 957 ÷ 2 = 7 881 350 893 076 478 + 1;
- 7 881 350 893 076 478 ÷ 2 = 3 940 675 446 538 239 + 0;
- 3 940 675 446 538 239 ÷ 2 = 1 970 337 723 269 119 + 1;
- 1 970 337 723 269 119 ÷ 2 = 985 168 861 634 559 + 1;
- 985 168 861 634 559 ÷ 2 = 492 584 430 817 279 + 1;
- 492 584 430 817 279 ÷ 2 = 246 292 215 408 639 + 1;
- 246 292 215 408 639 ÷ 2 = 123 146 107 704 319 + 1;
- 123 146 107 704 319 ÷ 2 = 61 573 053 852 159 + 1;
- 61 573 053 852 159 ÷ 2 = 30 786 526 926 079 + 1;
- 30 786 526 926 079 ÷ 2 = 15 393 263 463 039 + 1;
- 15 393 263 463 039 ÷ 2 = 7 696 631 731 519 + 1;
- 7 696 631 731 519 ÷ 2 = 3 848 315 865 759 + 1;
- 3 848 315 865 759 ÷ 2 = 1 924 157 932 879 + 1;
- 1 924 157 932 879 ÷ 2 = 962 078 966 439 + 1;
- 962 078 966 439 ÷ 2 = 481 039 483 219 + 1;
- 481 039 483 219 ÷ 2 = 240 519 741 609 + 1;
- 240 519 741 609 ÷ 2 = 120 259 870 804 + 1;
- 120 259 870 804 ÷ 2 = 60 129 935 402 + 0;
- 60 129 935 402 ÷ 2 = 30 064 967 701 + 0;
- 30 064 967 701 ÷ 2 = 15 032 483 850 + 1;
- 15 032 483 850 ÷ 2 = 7 516 241 925 + 0;
- 7 516 241 925 ÷ 2 = 3 758 120 962 + 1;
- 3 758 120 962 ÷ 2 = 1 879 060 481 + 0;
- 1 879 060 481 ÷ 2 = 939 530 240 + 1;
- 939 530 240 ÷ 2 = 469 765 120 + 0;
- 469 765 120 ÷ 2 = 234 882 560 + 0;
- 234 882 560 ÷ 2 = 117 441 280 + 0;
- 117 441 280 ÷ 2 = 58 720 640 + 0;
- 58 720 640 ÷ 2 = 29 360 320 + 0;
- 29 360 320 ÷ 2 = 14 680 160 + 0;
- 14 680 160 ÷ 2 = 7 340 080 + 0;
- 7 340 080 ÷ 2 = 3 670 040 + 0;
- 3 670 040 ÷ 2 = 1 835 020 + 0;
- 1 835 020 ÷ 2 = 917 510 + 0;
- 917 510 ÷ 2 = 458 755 + 0;
- 458 755 ÷ 2 = 229 377 + 1;
- 229 377 ÷ 2 = 114 688 + 1;
- 114 688 ÷ 2 = 57 344 + 0;
- 57 344 ÷ 2 = 28 672 + 0;
- 28 672 ÷ 2 = 14 336 + 0;
- 14 336 ÷ 2 = 7 168 + 0;
- 7 168 ÷ 2 = 3 584 + 0;
- 3 584 ÷ 2 = 1 792 + 0;
- 1 792 ÷ 2 = 896 + 0;
- 896 ÷ 2 = 448 + 0;
- 448 ÷ 2 = 224 + 0;
- 224 ÷ 2 = 112 + 0;
- 112 ÷ 2 = 56 + 0;
- 56 ÷ 2 = 28 + 0;
- 28 ÷ 2 = 14 + 0;
- 14 ÷ 2 = 7 + 0;
- 7 ÷ 2 = 3 + 1;
- 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.
1 008 812 914 313 789 286(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 008 812 914 313 789 286 (base 10) = 1110 0000 0000 0000 0110 0000 0000 0010 1010 0111 1111 1111 1111 0110 0110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.