What are the required steps to convert base 10 decimal system
number 72 075 186 240 749 742 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 075 186 240 749 742 ÷ 2 = 36 037 593 120 374 871 + 0;
- 36 037 593 120 374 871 ÷ 2 = 18 018 796 560 187 435 + 1;
- 18 018 796 560 187 435 ÷ 2 = 9 009 398 280 093 717 + 1;
- 9 009 398 280 093 717 ÷ 2 = 4 504 699 140 046 858 + 1;
- 4 504 699 140 046 858 ÷ 2 = 2 252 349 570 023 429 + 0;
- 2 252 349 570 023 429 ÷ 2 = 1 126 174 785 011 714 + 1;
- 1 126 174 785 011 714 ÷ 2 = 563 087 392 505 857 + 0;
- 563 087 392 505 857 ÷ 2 = 281 543 696 252 928 + 1;
- 281 543 696 252 928 ÷ 2 = 140 771 848 126 464 + 0;
- 140 771 848 126 464 ÷ 2 = 70 385 924 063 232 + 0;
- 70 385 924 063 232 ÷ 2 = 35 192 962 031 616 + 0;
- 35 192 962 031 616 ÷ 2 = 17 596 481 015 808 + 0;
- 17 596 481 015 808 ÷ 2 = 8 798 240 507 904 + 0;
- 8 798 240 507 904 ÷ 2 = 4 399 120 253 952 + 0;
- 4 399 120 253 952 ÷ 2 = 2 199 560 126 976 + 0;
- 2 199 560 126 976 ÷ 2 = 1 099 780 063 488 + 0;
- 1 099 780 063 488 ÷ 2 = 549 890 031 744 + 0;
- 549 890 031 744 ÷ 2 = 274 945 015 872 + 0;
- 274 945 015 872 ÷ 2 = 137 472 507 936 + 0;
- 137 472 507 936 ÷ 2 = 68 736 253 968 + 0;
- 68 736 253 968 ÷ 2 = 34 368 126 984 + 0;
- 34 368 126 984 ÷ 2 = 17 184 063 492 + 0;
- 17 184 063 492 ÷ 2 = 8 592 031 746 + 0;
- 8 592 031 746 ÷ 2 = 4 296 015 873 + 0;
- 4 296 015 873 ÷ 2 = 2 148 007 936 + 1;
- 2 148 007 936 ÷ 2 = 1 074 003 968 + 0;
- 1 074 003 968 ÷ 2 = 537 001 984 + 0;
- 537 001 984 ÷ 2 = 268 500 992 + 0;
- 268 500 992 ÷ 2 = 134 250 496 + 0;
- 134 250 496 ÷ 2 = 67 125 248 + 0;
- 67 125 248 ÷ 2 = 33 562 624 + 0;
- 33 562 624 ÷ 2 = 16 781 312 + 0;
- 16 781 312 ÷ 2 = 8 390 656 + 0;
- 8 390 656 ÷ 2 = 4 195 328 + 0;
- 4 195 328 ÷ 2 = 2 097 664 + 0;
- 2 097 664 ÷ 2 = 1 048 832 + 0;
- 1 048 832 ÷ 2 = 524 416 + 0;
- 524 416 ÷ 2 = 262 208 + 0;
- 262 208 ÷ 2 = 131 104 + 0;
- 131 104 ÷ 2 = 65 552 + 0;
- 65 552 ÷ 2 = 32 776 + 0;
- 32 776 ÷ 2 = 16 388 + 0;
- 16 388 ÷ 2 = 8 194 + 0;
- 8 194 ÷ 2 = 4 097 + 0;
- 4 097 ÷ 2 = 2 048 + 1;
- 2 048 ÷ 2 = 1 024 + 0;
- 1 024 ÷ 2 = 512 + 0;
- 512 ÷ 2 = 256 + 0;
- 256 ÷ 2 = 128 + 0;
- 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 075 186 240 749 742(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
72 075 186 240 749 742 (base 10) = 1 0000 0000 0001 0000 0000 0000 0000 0001 0000 0000 0000 0000 1010 1110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.