What are the required steps to convert base 10 decimal system
number 1 111 111 111 111 111 041 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;
- 1 111 111 111 111 111 041 ÷ 2 = 555 555 555 555 555 520 + 1;
- 555 555 555 555 555 520 ÷ 2 = 277 777 777 777 777 760 + 0;
- 277 777 777 777 777 760 ÷ 2 = 138 888 888 888 888 880 + 0;
- 138 888 888 888 888 880 ÷ 2 = 69 444 444 444 444 440 + 0;
- 69 444 444 444 444 440 ÷ 2 = 34 722 222 222 222 220 + 0;
- 34 722 222 222 222 220 ÷ 2 = 17 361 111 111 111 110 + 0;
- 17 361 111 111 111 110 ÷ 2 = 8 680 555 555 555 555 + 0;
- 8 680 555 555 555 555 ÷ 2 = 4 340 277 777 777 777 + 1;
- 4 340 277 777 777 777 ÷ 2 = 2 170 138 888 888 888 + 1;
- 2 170 138 888 888 888 ÷ 2 = 1 085 069 444 444 444 + 0;
- 1 085 069 444 444 444 ÷ 2 = 542 534 722 222 222 + 0;
- 542 534 722 222 222 ÷ 2 = 271 267 361 111 111 + 0;
- 271 267 361 111 111 ÷ 2 = 135 633 680 555 555 + 1;
- 135 633 680 555 555 ÷ 2 = 67 816 840 277 777 + 1;
- 67 816 840 277 777 ÷ 2 = 33 908 420 138 888 + 1;
- 33 908 420 138 888 ÷ 2 = 16 954 210 069 444 + 0;
- 16 954 210 069 444 ÷ 2 = 8 477 105 034 722 + 0;
- 8 477 105 034 722 ÷ 2 = 4 238 552 517 361 + 0;
- 4 238 552 517 361 ÷ 2 = 2 119 276 258 680 + 1;
- 2 119 276 258 680 ÷ 2 = 1 059 638 129 340 + 0;
- 1 059 638 129 340 ÷ 2 = 529 819 064 670 + 0;
- 529 819 064 670 ÷ 2 = 264 909 532 335 + 0;
- 264 909 532 335 ÷ 2 = 132 454 766 167 + 1;
- 132 454 766 167 ÷ 2 = 66 227 383 083 + 1;
- 66 227 383 083 ÷ 2 = 33 113 691 541 + 1;
- 33 113 691 541 ÷ 2 = 16 556 845 770 + 1;
- 16 556 845 770 ÷ 2 = 8 278 422 885 + 0;
- 8 278 422 885 ÷ 2 = 4 139 211 442 + 1;
- 4 139 211 442 ÷ 2 = 2 069 605 721 + 0;
- 2 069 605 721 ÷ 2 = 1 034 802 860 + 1;
- 1 034 802 860 ÷ 2 = 517 401 430 + 0;
- 517 401 430 ÷ 2 = 258 700 715 + 0;
- 258 700 715 ÷ 2 = 129 350 357 + 1;
- 129 350 357 ÷ 2 = 64 675 178 + 1;
- 64 675 178 ÷ 2 = 32 337 589 + 0;
- 32 337 589 ÷ 2 = 16 168 794 + 1;
- 16 168 794 ÷ 2 = 8 084 397 + 0;
- 8 084 397 ÷ 2 = 4 042 198 + 1;
- 4 042 198 ÷ 2 = 2 021 099 + 0;
- 2 021 099 ÷ 2 = 1 010 549 + 1;
- 1 010 549 ÷ 2 = 505 274 + 1;
- 505 274 ÷ 2 = 252 637 + 0;
- 252 637 ÷ 2 = 126 318 + 1;
- 126 318 ÷ 2 = 63 159 + 0;
- 63 159 ÷ 2 = 31 579 + 1;
- 31 579 ÷ 2 = 15 789 + 1;
- 15 789 ÷ 2 = 7 894 + 1;
- 7 894 ÷ 2 = 3 947 + 0;
- 3 947 ÷ 2 = 1 973 + 1;
- 1 973 ÷ 2 = 986 + 1;
- 986 ÷ 2 = 493 + 0;
- 493 ÷ 2 = 246 + 1;
- 246 ÷ 2 = 123 + 0;
- 123 ÷ 2 = 61 + 1;
- 61 ÷ 2 = 30 + 1;
- 30 ÷ 2 = 15 + 0;
- 15 ÷ 2 = 7 + 1;
- 7 ÷ 2 = 3 + 1;
- 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.
1 111 111 111 111 111 041(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 111 111 111 111 111 041 (base 10) = 1111 0110 1011 0111 0101 1010 1011 0010 1011 1100 0100 0111 0001 1000 0001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.