What are the required steps to convert base 10 decimal system
number 13 520 090 103 012 855 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;
- 13 520 090 103 012 855 ÷ 2 = 6 760 045 051 506 427 + 1;
- 6 760 045 051 506 427 ÷ 2 = 3 380 022 525 753 213 + 1;
- 3 380 022 525 753 213 ÷ 2 = 1 690 011 262 876 606 + 1;
- 1 690 011 262 876 606 ÷ 2 = 845 005 631 438 303 + 0;
- 845 005 631 438 303 ÷ 2 = 422 502 815 719 151 + 1;
- 422 502 815 719 151 ÷ 2 = 211 251 407 859 575 + 1;
- 211 251 407 859 575 ÷ 2 = 105 625 703 929 787 + 1;
- 105 625 703 929 787 ÷ 2 = 52 812 851 964 893 + 1;
- 52 812 851 964 893 ÷ 2 = 26 406 425 982 446 + 1;
- 26 406 425 982 446 ÷ 2 = 13 203 212 991 223 + 0;
- 13 203 212 991 223 ÷ 2 = 6 601 606 495 611 + 1;
- 6 601 606 495 611 ÷ 2 = 3 300 803 247 805 + 1;
- 3 300 803 247 805 ÷ 2 = 1 650 401 623 902 + 1;
- 1 650 401 623 902 ÷ 2 = 825 200 811 951 + 0;
- 825 200 811 951 ÷ 2 = 412 600 405 975 + 1;
- 412 600 405 975 ÷ 2 = 206 300 202 987 + 1;
- 206 300 202 987 ÷ 2 = 103 150 101 493 + 1;
- 103 150 101 493 ÷ 2 = 51 575 050 746 + 1;
- 51 575 050 746 ÷ 2 = 25 787 525 373 + 0;
- 25 787 525 373 ÷ 2 = 12 893 762 686 + 1;
- 12 893 762 686 ÷ 2 = 6 446 881 343 + 0;
- 6 446 881 343 ÷ 2 = 3 223 440 671 + 1;
- 3 223 440 671 ÷ 2 = 1 611 720 335 + 1;
- 1 611 720 335 ÷ 2 = 805 860 167 + 1;
- 805 860 167 ÷ 2 = 402 930 083 + 1;
- 402 930 083 ÷ 2 = 201 465 041 + 1;
- 201 465 041 ÷ 2 = 100 732 520 + 1;
- 100 732 520 ÷ 2 = 50 366 260 + 0;
- 50 366 260 ÷ 2 = 25 183 130 + 0;
- 25 183 130 ÷ 2 = 12 591 565 + 0;
- 12 591 565 ÷ 2 = 6 295 782 + 1;
- 6 295 782 ÷ 2 = 3 147 891 + 0;
- 3 147 891 ÷ 2 = 1 573 945 + 1;
- 1 573 945 ÷ 2 = 786 972 + 1;
- 786 972 ÷ 2 = 393 486 + 0;
- 393 486 ÷ 2 = 196 743 + 0;
- 196 743 ÷ 2 = 98 371 + 1;
- 98 371 ÷ 2 = 49 185 + 1;
- 49 185 ÷ 2 = 24 592 + 1;
- 24 592 ÷ 2 = 12 296 + 0;
- 12 296 ÷ 2 = 6 148 + 0;
- 6 148 ÷ 2 = 3 074 + 0;
- 3 074 ÷ 2 = 1 537 + 0;
- 1 537 ÷ 2 = 768 + 1;
- 768 ÷ 2 = 384 + 0;
- 384 ÷ 2 = 192 + 0;
- 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.
13 520 090 103 012 855(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
13 520 090 103 012 855 (base 10) = 11 0000 0000 1000 0111 0011 0100 0111 1110 1011 1101 1101 1111 0111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.