What are the required steps to convert base 10 decimal system
number 100 110 101 010 091 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;
- 100 110 101 010 091 ÷ 2 = 50 055 050 505 045 + 1;
- 50 055 050 505 045 ÷ 2 = 25 027 525 252 522 + 1;
- 25 027 525 252 522 ÷ 2 = 12 513 762 626 261 + 0;
- 12 513 762 626 261 ÷ 2 = 6 256 881 313 130 + 1;
- 6 256 881 313 130 ÷ 2 = 3 128 440 656 565 + 0;
- 3 128 440 656 565 ÷ 2 = 1 564 220 328 282 + 1;
- 1 564 220 328 282 ÷ 2 = 782 110 164 141 + 0;
- 782 110 164 141 ÷ 2 = 391 055 082 070 + 1;
- 391 055 082 070 ÷ 2 = 195 527 541 035 + 0;
- 195 527 541 035 ÷ 2 = 97 763 770 517 + 1;
- 97 763 770 517 ÷ 2 = 48 881 885 258 + 1;
- 48 881 885 258 ÷ 2 = 24 440 942 629 + 0;
- 24 440 942 629 ÷ 2 = 12 220 471 314 + 1;
- 12 220 471 314 ÷ 2 = 6 110 235 657 + 0;
- 6 110 235 657 ÷ 2 = 3 055 117 828 + 1;
- 3 055 117 828 ÷ 2 = 1 527 558 914 + 0;
- 1 527 558 914 ÷ 2 = 763 779 457 + 0;
- 763 779 457 ÷ 2 = 381 889 728 + 1;
- 381 889 728 ÷ 2 = 190 944 864 + 0;
- 190 944 864 ÷ 2 = 95 472 432 + 0;
- 95 472 432 ÷ 2 = 47 736 216 + 0;
- 47 736 216 ÷ 2 = 23 868 108 + 0;
- 23 868 108 ÷ 2 = 11 934 054 + 0;
- 11 934 054 ÷ 2 = 5 967 027 + 0;
- 5 967 027 ÷ 2 = 2 983 513 + 1;
- 2 983 513 ÷ 2 = 1 491 756 + 1;
- 1 491 756 ÷ 2 = 745 878 + 0;
- 745 878 ÷ 2 = 372 939 + 0;
- 372 939 ÷ 2 = 186 469 + 1;
- 186 469 ÷ 2 = 93 234 + 1;
- 93 234 ÷ 2 = 46 617 + 0;
- 46 617 ÷ 2 = 23 308 + 1;
- 23 308 ÷ 2 = 11 654 + 0;
- 11 654 ÷ 2 = 5 827 + 0;
- 5 827 ÷ 2 = 2 913 + 1;
- 2 913 ÷ 2 = 1 456 + 1;
- 1 456 ÷ 2 = 728 + 0;
- 728 ÷ 2 = 364 + 0;
- 364 ÷ 2 = 182 + 0;
- 182 ÷ 2 = 91 + 0;
- 91 ÷ 2 = 45 + 1;
- 45 ÷ 2 = 22 + 1;
- 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.
100 110 101 010 091(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
100 110 101 010 091 (base 10) = 101 1011 0000 1100 1011 0011 0000 0010 0101 0110 1010 1011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.