What are the required steps to convert base 10 decimal system
number 49 312 332 655 420 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;
- 49 312 332 655 420 ÷ 2 = 24 656 166 327 710 + 0;
- 24 656 166 327 710 ÷ 2 = 12 328 083 163 855 + 0;
- 12 328 083 163 855 ÷ 2 = 6 164 041 581 927 + 1;
- 6 164 041 581 927 ÷ 2 = 3 082 020 790 963 + 1;
- 3 082 020 790 963 ÷ 2 = 1 541 010 395 481 + 1;
- 1 541 010 395 481 ÷ 2 = 770 505 197 740 + 1;
- 770 505 197 740 ÷ 2 = 385 252 598 870 + 0;
- 385 252 598 870 ÷ 2 = 192 626 299 435 + 0;
- 192 626 299 435 ÷ 2 = 96 313 149 717 + 1;
- 96 313 149 717 ÷ 2 = 48 156 574 858 + 1;
- 48 156 574 858 ÷ 2 = 24 078 287 429 + 0;
- 24 078 287 429 ÷ 2 = 12 039 143 714 + 1;
- 12 039 143 714 ÷ 2 = 6 019 571 857 + 0;
- 6 019 571 857 ÷ 2 = 3 009 785 928 + 1;
- 3 009 785 928 ÷ 2 = 1 504 892 964 + 0;
- 1 504 892 964 ÷ 2 = 752 446 482 + 0;
- 752 446 482 ÷ 2 = 376 223 241 + 0;
- 376 223 241 ÷ 2 = 188 111 620 + 1;
- 188 111 620 ÷ 2 = 94 055 810 + 0;
- 94 055 810 ÷ 2 = 47 027 905 + 0;
- 47 027 905 ÷ 2 = 23 513 952 + 1;
- 23 513 952 ÷ 2 = 11 756 976 + 0;
- 11 756 976 ÷ 2 = 5 878 488 + 0;
- 5 878 488 ÷ 2 = 2 939 244 + 0;
- 2 939 244 ÷ 2 = 1 469 622 + 0;
- 1 469 622 ÷ 2 = 734 811 + 0;
- 734 811 ÷ 2 = 367 405 + 1;
- 367 405 ÷ 2 = 183 702 + 1;
- 183 702 ÷ 2 = 91 851 + 0;
- 91 851 ÷ 2 = 45 925 + 1;
- 45 925 ÷ 2 = 22 962 + 1;
- 22 962 ÷ 2 = 11 481 + 0;
- 11 481 ÷ 2 = 5 740 + 1;
- 5 740 ÷ 2 = 2 870 + 0;
- 2 870 ÷ 2 = 1 435 + 0;
- 1 435 ÷ 2 = 717 + 1;
- 717 ÷ 2 = 358 + 1;
- 358 ÷ 2 = 179 + 0;
- 179 ÷ 2 = 89 + 1;
- 89 ÷ 2 = 44 + 1;
- 44 ÷ 2 = 22 + 0;
- 22 ÷ 2 = 11 + 0;
- 11 ÷ 2 = 5 + 1;
- 5 ÷ 2 = 2 + 1;
- 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.
49 312 332 655 420(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
49 312 332 655 420 (base 10) = 10 1100 1101 1001 0110 1100 0001 0010 0010 1011 0011 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.