What are the required steps to convert base 10 decimal system
number 11 000 000 110 824 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;
- 11 000 000 110 824 ÷ 2 = 5 500 000 055 412 + 0;
- 5 500 000 055 412 ÷ 2 = 2 750 000 027 706 + 0;
- 2 750 000 027 706 ÷ 2 = 1 375 000 013 853 + 0;
- 1 375 000 013 853 ÷ 2 = 687 500 006 926 + 1;
- 687 500 006 926 ÷ 2 = 343 750 003 463 + 0;
- 343 750 003 463 ÷ 2 = 171 875 001 731 + 1;
- 171 875 001 731 ÷ 2 = 85 937 500 865 + 1;
- 85 937 500 865 ÷ 2 = 42 968 750 432 + 1;
- 42 968 750 432 ÷ 2 = 21 484 375 216 + 0;
- 21 484 375 216 ÷ 2 = 10 742 187 608 + 0;
- 10 742 187 608 ÷ 2 = 5 371 093 804 + 0;
- 5 371 093 804 ÷ 2 = 2 685 546 902 + 0;
- 2 685 546 902 ÷ 2 = 1 342 773 451 + 0;
- 1 342 773 451 ÷ 2 = 671 386 725 + 1;
- 671 386 725 ÷ 2 = 335 693 362 + 1;
- 335 693 362 ÷ 2 = 167 846 681 + 0;
- 167 846 681 ÷ 2 = 83 923 340 + 1;
- 83 923 340 ÷ 2 = 41 961 670 + 0;
- 41 961 670 ÷ 2 = 20 980 835 + 0;
- 20 980 835 ÷ 2 = 10 490 417 + 1;
- 10 490 417 ÷ 2 = 5 245 208 + 1;
- 5 245 208 ÷ 2 = 2 622 604 + 0;
- 2 622 604 ÷ 2 = 1 311 302 + 0;
- 1 311 302 ÷ 2 = 655 651 + 0;
- 655 651 ÷ 2 = 327 825 + 1;
- 327 825 ÷ 2 = 163 912 + 1;
- 163 912 ÷ 2 = 81 956 + 0;
- 81 956 ÷ 2 = 40 978 + 0;
- 40 978 ÷ 2 = 20 489 + 0;
- 20 489 ÷ 2 = 10 244 + 1;
- 10 244 ÷ 2 = 5 122 + 0;
- 5 122 ÷ 2 = 2 561 + 0;
- 2 561 ÷ 2 = 1 280 + 1;
- 1 280 ÷ 2 = 640 + 0;
- 640 ÷ 2 = 320 + 0;
- 320 ÷ 2 = 160 + 0;
- 160 ÷ 2 = 80 + 0;
- 80 ÷ 2 = 40 + 0;
- 40 ÷ 2 = 20 + 0;
- 20 ÷ 2 = 10 + 0;
- 10 ÷ 2 = 5 + 0;
- 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.
11 000 000 110 824(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
11 000 000 110 824 (base 10) = 1010 0000 0001 0010 0011 0001 1001 0110 0000 1110 1000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.