What are the required steps to convert base 10 decimal system
number 232 579 462 511 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;
- 232 579 462 511 ÷ 2 = 116 289 731 255 + 1;
- 116 289 731 255 ÷ 2 = 58 144 865 627 + 1;
- 58 144 865 627 ÷ 2 = 29 072 432 813 + 1;
- 29 072 432 813 ÷ 2 = 14 536 216 406 + 1;
- 14 536 216 406 ÷ 2 = 7 268 108 203 + 0;
- 7 268 108 203 ÷ 2 = 3 634 054 101 + 1;
- 3 634 054 101 ÷ 2 = 1 817 027 050 + 1;
- 1 817 027 050 ÷ 2 = 908 513 525 + 0;
- 908 513 525 ÷ 2 = 454 256 762 + 1;
- 454 256 762 ÷ 2 = 227 128 381 + 0;
- 227 128 381 ÷ 2 = 113 564 190 + 1;
- 113 564 190 ÷ 2 = 56 782 095 + 0;
- 56 782 095 ÷ 2 = 28 391 047 + 1;
- 28 391 047 ÷ 2 = 14 195 523 + 1;
- 14 195 523 ÷ 2 = 7 097 761 + 1;
- 7 097 761 ÷ 2 = 3 548 880 + 1;
- 3 548 880 ÷ 2 = 1 774 440 + 0;
- 1 774 440 ÷ 2 = 887 220 + 0;
- 887 220 ÷ 2 = 443 610 + 0;
- 443 610 ÷ 2 = 221 805 + 0;
- 221 805 ÷ 2 = 110 902 + 1;
- 110 902 ÷ 2 = 55 451 + 0;
- 55 451 ÷ 2 = 27 725 + 1;
- 27 725 ÷ 2 = 13 862 + 1;
- 13 862 ÷ 2 = 6 931 + 0;
- 6 931 ÷ 2 = 3 465 + 1;
- 3 465 ÷ 2 = 1 732 + 1;
- 1 732 ÷ 2 = 866 + 0;
- 866 ÷ 2 = 433 + 0;
- 433 ÷ 2 = 216 + 1;
- 216 ÷ 2 = 108 + 0;
- 108 ÷ 2 = 54 + 0;
- 54 ÷ 2 = 27 + 0;
- 27 ÷ 2 = 13 + 1;
- 13 ÷ 2 = 6 + 1;
- 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.
232 579 462 511(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
232 579 462 511 (base 10) = 11 0110 0010 0110 1101 0000 1111 0101 0110 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.