What are the required steps to convert base 10 decimal system
number 3 472 328 296 227 680 677 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;
- 3 472 328 296 227 680 677 ÷ 2 = 1 736 164 148 113 840 338 + 1;
- 1 736 164 148 113 840 338 ÷ 2 = 868 082 074 056 920 169 + 0;
- 868 082 074 056 920 169 ÷ 2 = 434 041 037 028 460 084 + 1;
- 434 041 037 028 460 084 ÷ 2 = 217 020 518 514 230 042 + 0;
- 217 020 518 514 230 042 ÷ 2 = 108 510 259 257 115 021 + 0;
- 108 510 259 257 115 021 ÷ 2 = 54 255 129 628 557 510 + 1;
- 54 255 129 628 557 510 ÷ 2 = 27 127 564 814 278 755 + 0;
- 27 127 564 814 278 755 ÷ 2 = 13 563 782 407 139 377 + 1;
- 13 563 782 407 139 377 ÷ 2 = 6 781 891 203 569 688 + 1;
- 6 781 891 203 569 688 ÷ 2 = 3 390 945 601 784 844 + 0;
- 3 390 945 601 784 844 ÷ 2 = 1 695 472 800 892 422 + 0;
- 1 695 472 800 892 422 ÷ 2 = 847 736 400 446 211 + 0;
- 847 736 400 446 211 ÷ 2 = 423 868 200 223 105 + 1;
- 423 868 200 223 105 ÷ 2 = 211 934 100 111 552 + 1;
- 211 934 100 111 552 ÷ 2 = 105 967 050 055 776 + 0;
- 105 967 050 055 776 ÷ 2 = 52 983 525 027 888 + 0;
- 52 983 525 027 888 ÷ 2 = 26 491 762 513 944 + 0;
- 26 491 762 513 944 ÷ 2 = 13 245 881 256 972 + 0;
- 13 245 881 256 972 ÷ 2 = 6 622 940 628 486 + 0;
- 6 622 940 628 486 ÷ 2 = 3 311 470 314 243 + 0;
- 3 311 470 314 243 ÷ 2 = 1 655 735 157 121 + 1;
- 1 655 735 157 121 ÷ 2 = 827 867 578 560 + 1;
- 827 867 578 560 ÷ 2 = 413 933 789 280 + 0;
- 413 933 789 280 ÷ 2 = 206 966 894 640 + 0;
- 206 966 894 640 ÷ 2 = 103 483 447 320 + 0;
- 103 483 447 320 ÷ 2 = 51 741 723 660 + 0;
- 51 741 723 660 ÷ 2 = 25 870 861 830 + 0;
- 25 870 861 830 ÷ 2 = 12 935 430 915 + 0;
- 12 935 430 915 ÷ 2 = 6 467 715 457 + 1;
- 6 467 715 457 ÷ 2 = 3 233 857 728 + 1;
- 3 233 857 728 ÷ 2 = 1 616 928 864 + 0;
- 1 616 928 864 ÷ 2 = 808 464 432 + 0;
- 808 464 432 ÷ 2 = 404 232 216 + 0;
- 404 232 216 ÷ 2 = 202 116 108 + 0;
- 202 116 108 ÷ 2 = 101 058 054 + 0;
- 101 058 054 ÷ 2 = 50 529 027 + 0;
- 50 529 027 ÷ 2 = 25 264 513 + 1;
- 25 264 513 ÷ 2 = 12 632 256 + 1;
- 12 632 256 ÷ 2 = 6 316 128 + 0;
- 6 316 128 ÷ 2 = 3 158 064 + 0;
- 3 158 064 ÷ 2 = 1 579 032 + 0;
- 1 579 032 ÷ 2 = 789 516 + 0;
- 789 516 ÷ 2 = 394 758 + 0;
- 394 758 ÷ 2 = 197 379 + 0;
- 197 379 ÷ 2 = 98 689 + 1;
- 98 689 ÷ 2 = 49 344 + 1;
- 49 344 ÷ 2 = 24 672 + 0;
- 24 672 ÷ 2 = 12 336 + 0;
- 12 336 ÷ 2 = 6 168 + 0;
- 6 168 ÷ 2 = 3 084 + 0;
- 3 084 ÷ 2 = 1 542 + 0;
- 1 542 ÷ 2 = 771 + 0;
- 771 ÷ 2 = 385 + 1;
- 385 ÷ 2 = 192 + 1;
- 192 ÷ 2 = 96 + 0;
- 96 ÷ 2 = 48 + 0;
- 48 ÷ 2 = 24 + 0;
- 24 ÷ 2 = 12 + 0;
- 12 ÷ 2 = 6 + 0;
- 6 ÷ 2 = 3 + 0;
- 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.
3 472 328 296 227 680 677(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
3 472 328 296 227 680 677 (base 10) = 11 0000 0011 0000 0011 0000 0011 0000 0011 0000 0011 0000 0011 0001 1010 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.