What are the required steps to convert base 10 decimal system
number 16 525 534 153 750 244 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;
- 16 525 534 153 750 244 ÷ 2 = 8 262 767 076 875 122 + 0;
- 8 262 767 076 875 122 ÷ 2 = 4 131 383 538 437 561 + 0;
- 4 131 383 538 437 561 ÷ 2 = 2 065 691 769 218 780 + 1;
- 2 065 691 769 218 780 ÷ 2 = 1 032 845 884 609 390 + 0;
- 1 032 845 884 609 390 ÷ 2 = 516 422 942 304 695 + 0;
- 516 422 942 304 695 ÷ 2 = 258 211 471 152 347 + 1;
- 258 211 471 152 347 ÷ 2 = 129 105 735 576 173 + 1;
- 129 105 735 576 173 ÷ 2 = 64 552 867 788 086 + 1;
- 64 552 867 788 086 ÷ 2 = 32 276 433 894 043 + 0;
- 32 276 433 894 043 ÷ 2 = 16 138 216 947 021 + 1;
- 16 138 216 947 021 ÷ 2 = 8 069 108 473 510 + 1;
- 8 069 108 473 510 ÷ 2 = 4 034 554 236 755 + 0;
- 4 034 554 236 755 ÷ 2 = 2 017 277 118 377 + 1;
- 2 017 277 118 377 ÷ 2 = 1 008 638 559 188 + 1;
- 1 008 638 559 188 ÷ 2 = 504 319 279 594 + 0;
- 504 319 279 594 ÷ 2 = 252 159 639 797 + 0;
- 252 159 639 797 ÷ 2 = 126 079 819 898 + 1;
- 126 079 819 898 ÷ 2 = 63 039 909 949 + 0;
- 63 039 909 949 ÷ 2 = 31 519 954 974 + 1;
- 31 519 954 974 ÷ 2 = 15 759 977 487 + 0;
- 15 759 977 487 ÷ 2 = 7 879 988 743 + 1;
- 7 879 988 743 ÷ 2 = 3 939 994 371 + 1;
- 3 939 994 371 ÷ 2 = 1 969 997 185 + 1;
- 1 969 997 185 ÷ 2 = 984 998 592 + 1;
- 984 998 592 ÷ 2 = 492 499 296 + 0;
- 492 499 296 ÷ 2 = 246 249 648 + 0;
- 246 249 648 ÷ 2 = 123 124 824 + 0;
- 123 124 824 ÷ 2 = 61 562 412 + 0;
- 61 562 412 ÷ 2 = 30 781 206 + 0;
- 30 781 206 ÷ 2 = 15 390 603 + 0;
- 15 390 603 ÷ 2 = 7 695 301 + 1;
- 7 695 301 ÷ 2 = 3 847 650 + 1;
- 3 847 650 ÷ 2 = 1 923 825 + 0;
- 1 923 825 ÷ 2 = 961 912 + 1;
- 961 912 ÷ 2 = 480 956 + 0;
- 480 956 ÷ 2 = 240 478 + 0;
- 240 478 ÷ 2 = 120 239 + 0;
- 120 239 ÷ 2 = 60 119 + 1;
- 60 119 ÷ 2 = 30 059 + 1;
- 30 059 ÷ 2 = 15 029 + 1;
- 15 029 ÷ 2 = 7 514 + 1;
- 7 514 ÷ 2 = 3 757 + 0;
- 3 757 ÷ 2 = 1 878 + 1;
- 1 878 ÷ 2 = 939 + 0;
- 939 ÷ 2 = 469 + 1;
- 469 ÷ 2 = 234 + 1;
- 234 ÷ 2 = 117 + 0;
- 117 ÷ 2 = 58 + 1;
- 58 ÷ 2 = 29 + 0;
- 29 ÷ 2 = 14 + 1;
- 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.
16 525 534 153 750 244(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
16 525 534 153 750 244 (base 10) = 11 1010 1011 0101 1110 0010 1100 0000 1111 0101 0011 0110 1110 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.