What are the required steps to convert base 10 decimal system
number 72 339 621 334 948 113 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;
- 72 339 621 334 948 113 ÷ 2 = 36 169 810 667 474 056 + 1;
- 36 169 810 667 474 056 ÷ 2 = 18 084 905 333 737 028 + 0;
- 18 084 905 333 737 028 ÷ 2 = 9 042 452 666 868 514 + 0;
- 9 042 452 666 868 514 ÷ 2 = 4 521 226 333 434 257 + 0;
- 4 521 226 333 434 257 ÷ 2 = 2 260 613 166 717 128 + 1;
- 2 260 613 166 717 128 ÷ 2 = 1 130 306 583 358 564 + 0;
- 1 130 306 583 358 564 ÷ 2 = 565 153 291 679 282 + 0;
- 565 153 291 679 282 ÷ 2 = 282 576 645 839 641 + 0;
- 282 576 645 839 641 ÷ 2 = 141 288 322 919 820 + 1;
- 141 288 322 919 820 ÷ 2 = 70 644 161 459 910 + 0;
- 70 644 161 459 910 ÷ 2 = 35 322 080 729 955 + 0;
- 35 322 080 729 955 ÷ 2 = 17 661 040 364 977 + 1;
- 17 661 040 364 977 ÷ 2 = 8 830 520 182 488 + 1;
- 8 830 520 182 488 ÷ 2 = 4 415 260 091 244 + 0;
- 4 415 260 091 244 ÷ 2 = 2 207 630 045 622 + 0;
- 2 207 630 045 622 ÷ 2 = 1 103 815 022 811 + 0;
- 1 103 815 022 811 ÷ 2 = 551 907 511 405 + 1;
- 551 907 511 405 ÷ 2 = 275 953 755 702 + 1;
- 275 953 755 702 ÷ 2 = 137 976 877 851 + 0;
- 137 976 877 851 ÷ 2 = 68 988 438 925 + 1;
- 68 988 438 925 ÷ 2 = 34 494 219 462 + 1;
- 34 494 219 462 ÷ 2 = 17 247 109 731 + 0;
- 17 247 109 731 ÷ 2 = 8 623 554 865 + 1;
- 8 623 554 865 ÷ 2 = 4 311 777 432 + 1;
- 4 311 777 432 ÷ 2 = 2 155 888 716 + 0;
- 2 155 888 716 ÷ 2 = 1 077 944 358 + 0;
- 1 077 944 358 ÷ 2 = 538 972 179 + 0;
- 538 972 179 ÷ 2 = 269 486 089 + 1;
- 269 486 089 ÷ 2 = 134 743 044 + 1;
- 134 743 044 ÷ 2 = 67 371 522 + 0;
- 67 371 522 ÷ 2 = 33 685 761 + 0;
- 33 685 761 ÷ 2 = 16 842 880 + 1;
- 16 842 880 ÷ 2 = 8 421 440 + 0;
- 8 421 440 ÷ 2 = 4 210 720 + 0;
- 4 210 720 ÷ 2 = 2 105 360 + 0;
- 2 105 360 ÷ 2 = 1 052 680 + 0;
- 1 052 680 ÷ 2 = 526 340 + 0;
- 526 340 ÷ 2 = 263 170 + 0;
- 263 170 ÷ 2 = 131 585 + 0;
- 131 585 ÷ 2 = 65 792 + 1;
- 65 792 ÷ 2 = 32 896 + 0;
- 32 896 ÷ 2 = 16 448 + 0;
- 16 448 ÷ 2 = 8 224 + 0;
- 8 224 ÷ 2 = 4 112 + 0;
- 4 112 ÷ 2 = 2 056 + 0;
- 2 056 ÷ 2 = 1 028 + 0;
- 1 028 ÷ 2 = 514 + 0;
- 514 ÷ 2 = 257 + 0;
- 257 ÷ 2 = 128 + 1;
- 128 ÷ 2 = 64 + 0;
- 64 ÷ 2 = 32 + 0;
- 32 ÷ 2 = 16 + 0;
- 16 ÷ 2 = 8 + 0;
- 8 ÷ 2 = 4 + 0;
- 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.
72 339 621 334 948 113(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
72 339 621 334 948 113 (base 10) = 1 0000 0001 0000 0000 1000 0000 1001 1000 1101 1011 0001 1001 0001 0001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.