What are the required steps to convert base 10 decimal system
number 2 549 525 104 000 239 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;
- 2 549 525 104 000 239 ÷ 2 = 1 274 762 552 000 119 + 1;
- 1 274 762 552 000 119 ÷ 2 = 637 381 276 000 059 + 1;
- 637 381 276 000 059 ÷ 2 = 318 690 638 000 029 + 1;
- 318 690 638 000 029 ÷ 2 = 159 345 319 000 014 + 1;
- 159 345 319 000 014 ÷ 2 = 79 672 659 500 007 + 0;
- 79 672 659 500 007 ÷ 2 = 39 836 329 750 003 + 1;
- 39 836 329 750 003 ÷ 2 = 19 918 164 875 001 + 1;
- 19 918 164 875 001 ÷ 2 = 9 959 082 437 500 + 1;
- 9 959 082 437 500 ÷ 2 = 4 979 541 218 750 + 0;
- 4 979 541 218 750 ÷ 2 = 2 489 770 609 375 + 0;
- 2 489 770 609 375 ÷ 2 = 1 244 885 304 687 + 1;
- 1 244 885 304 687 ÷ 2 = 622 442 652 343 + 1;
- 622 442 652 343 ÷ 2 = 311 221 326 171 + 1;
- 311 221 326 171 ÷ 2 = 155 610 663 085 + 1;
- 155 610 663 085 ÷ 2 = 77 805 331 542 + 1;
- 77 805 331 542 ÷ 2 = 38 902 665 771 + 0;
- 38 902 665 771 ÷ 2 = 19 451 332 885 + 1;
- 19 451 332 885 ÷ 2 = 9 725 666 442 + 1;
- 9 725 666 442 ÷ 2 = 4 862 833 221 + 0;
- 4 862 833 221 ÷ 2 = 2 431 416 610 + 1;
- 2 431 416 610 ÷ 2 = 1 215 708 305 + 0;
- 1 215 708 305 ÷ 2 = 607 854 152 + 1;
- 607 854 152 ÷ 2 = 303 927 076 + 0;
- 303 927 076 ÷ 2 = 151 963 538 + 0;
- 151 963 538 ÷ 2 = 75 981 769 + 0;
- 75 981 769 ÷ 2 = 37 990 884 + 1;
- 37 990 884 ÷ 2 = 18 995 442 + 0;
- 18 995 442 ÷ 2 = 9 497 721 + 0;
- 9 497 721 ÷ 2 = 4 748 860 + 1;
- 4 748 860 ÷ 2 = 2 374 430 + 0;
- 2 374 430 ÷ 2 = 1 187 215 + 0;
- 1 187 215 ÷ 2 = 593 607 + 1;
- 593 607 ÷ 2 = 296 803 + 1;
- 296 803 ÷ 2 = 148 401 + 1;
- 148 401 ÷ 2 = 74 200 + 1;
- 74 200 ÷ 2 = 37 100 + 0;
- 37 100 ÷ 2 = 18 550 + 0;
- 18 550 ÷ 2 = 9 275 + 0;
- 9 275 ÷ 2 = 4 637 + 1;
- 4 637 ÷ 2 = 2 318 + 1;
- 2 318 ÷ 2 = 1 159 + 0;
- 1 159 ÷ 2 = 579 + 1;
- 579 ÷ 2 = 289 + 1;
- 289 ÷ 2 = 144 + 1;
- 144 ÷ 2 = 72 + 0;
- 72 ÷ 2 = 36 + 0;
- 36 ÷ 2 = 18 + 0;
- 18 ÷ 2 = 9 + 0;
- 9 ÷ 2 = 4 + 1;
- 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.
2 549 525 104 000 239(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
2 549 525 104 000 239 (base 10) = 1001 0000 1110 1100 0111 1001 0010 0010 1011 0111 1100 1110 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.