What are the required steps to convert base 10 decimal system
number 24 653 465 763 279 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;
- 24 653 465 763 279 ÷ 2 = 12 326 732 881 639 + 1;
- 12 326 732 881 639 ÷ 2 = 6 163 366 440 819 + 1;
- 6 163 366 440 819 ÷ 2 = 3 081 683 220 409 + 1;
- 3 081 683 220 409 ÷ 2 = 1 540 841 610 204 + 1;
- 1 540 841 610 204 ÷ 2 = 770 420 805 102 + 0;
- 770 420 805 102 ÷ 2 = 385 210 402 551 + 0;
- 385 210 402 551 ÷ 2 = 192 605 201 275 + 1;
- 192 605 201 275 ÷ 2 = 96 302 600 637 + 1;
- 96 302 600 637 ÷ 2 = 48 151 300 318 + 1;
- 48 151 300 318 ÷ 2 = 24 075 650 159 + 0;
- 24 075 650 159 ÷ 2 = 12 037 825 079 + 1;
- 12 037 825 079 ÷ 2 = 6 018 912 539 + 1;
- 6 018 912 539 ÷ 2 = 3 009 456 269 + 1;
- 3 009 456 269 ÷ 2 = 1 504 728 134 + 1;
- 1 504 728 134 ÷ 2 = 752 364 067 + 0;
- 752 364 067 ÷ 2 = 376 182 033 + 1;
- 376 182 033 ÷ 2 = 188 091 016 + 1;
- 188 091 016 ÷ 2 = 94 045 508 + 0;
- 94 045 508 ÷ 2 = 47 022 754 + 0;
- 47 022 754 ÷ 2 = 23 511 377 + 0;
- 23 511 377 ÷ 2 = 11 755 688 + 1;
- 11 755 688 ÷ 2 = 5 877 844 + 0;
- 5 877 844 ÷ 2 = 2 938 922 + 0;
- 2 938 922 ÷ 2 = 1 469 461 + 0;
- 1 469 461 ÷ 2 = 734 730 + 1;
- 734 730 ÷ 2 = 367 365 + 0;
- 367 365 ÷ 2 = 183 682 + 1;
- 183 682 ÷ 2 = 91 841 + 0;
- 91 841 ÷ 2 = 45 920 + 1;
- 45 920 ÷ 2 = 22 960 + 0;
- 22 960 ÷ 2 = 11 480 + 0;
- 11 480 ÷ 2 = 5 740 + 0;
- 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.
24 653 465 763 279(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
24 653 465 763 279 (base 10) = 1 0110 0110 1100 0001 0101 0001 0001 1011 1101 1100 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.