What are the required steps to convert base 10 decimal system
number 12 011 111 111 111 297 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;
- 12 011 111 111 111 297 ÷ 2 = 6 005 555 555 555 648 + 1;
- 6 005 555 555 555 648 ÷ 2 = 3 002 777 777 777 824 + 0;
- 3 002 777 777 777 824 ÷ 2 = 1 501 388 888 888 912 + 0;
- 1 501 388 888 888 912 ÷ 2 = 750 694 444 444 456 + 0;
- 750 694 444 444 456 ÷ 2 = 375 347 222 222 228 + 0;
- 375 347 222 222 228 ÷ 2 = 187 673 611 111 114 + 0;
- 187 673 611 111 114 ÷ 2 = 93 836 805 555 557 + 0;
- 93 836 805 555 557 ÷ 2 = 46 918 402 777 778 + 1;
- 46 918 402 777 778 ÷ 2 = 23 459 201 388 889 + 0;
- 23 459 201 388 889 ÷ 2 = 11 729 600 694 444 + 1;
- 11 729 600 694 444 ÷ 2 = 5 864 800 347 222 + 0;
- 5 864 800 347 222 ÷ 2 = 2 932 400 173 611 + 0;
- 2 932 400 173 611 ÷ 2 = 1 466 200 086 805 + 1;
- 1 466 200 086 805 ÷ 2 = 733 100 043 402 + 1;
- 733 100 043 402 ÷ 2 = 366 550 021 701 + 0;
- 366 550 021 701 ÷ 2 = 183 275 010 850 + 1;
- 183 275 010 850 ÷ 2 = 91 637 505 425 + 0;
- 91 637 505 425 ÷ 2 = 45 818 752 712 + 1;
- 45 818 752 712 ÷ 2 = 22 909 376 356 + 0;
- 22 909 376 356 ÷ 2 = 11 454 688 178 + 0;
- 11 454 688 178 ÷ 2 = 5 727 344 089 + 0;
- 5 727 344 089 ÷ 2 = 2 863 672 044 + 1;
- 2 863 672 044 ÷ 2 = 1 431 836 022 + 0;
- 1 431 836 022 ÷ 2 = 715 918 011 + 0;
- 715 918 011 ÷ 2 = 357 959 005 + 1;
- 357 959 005 ÷ 2 = 178 979 502 + 1;
- 178 979 502 ÷ 2 = 89 489 751 + 0;
- 89 489 751 ÷ 2 = 44 744 875 + 1;
- 44 744 875 ÷ 2 = 22 372 437 + 1;
- 22 372 437 ÷ 2 = 11 186 218 + 1;
- 11 186 218 ÷ 2 = 5 593 109 + 0;
- 5 593 109 ÷ 2 = 2 796 554 + 1;
- 2 796 554 ÷ 2 = 1 398 277 + 0;
- 1 398 277 ÷ 2 = 699 138 + 1;
- 699 138 ÷ 2 = 349 569 + 0;
- 349 569 ÷ 2 = 174 784 + 1;
- 174 784 ÷ 2 = 87 392 + 0;
- 87 392 ÷ 2 = 43 696 + 0;
- 43 696 ÷ 2 = 21 848 + 0;
- 21 848 ÷ 2 = 10 924 + 0;
- 10 924 ÷ 2 = 5 462 + 0;
- 5 462 ÷ 2 = 2 731 + 0;
- 2 731 ÷ 2 = 1 365 + 1;
- 1 365 ÷ 2 = 682 + 1;
- 682 ÷ 2 = 341 + 0;
- 341 ÷ 2 = 170 + 1;
- 170 ÷ 2 = 85 + 0;
- 85 ÷ 2 = 42 + 1;
- 42 ÷ 2 = 21 + 0;
- 21 ÷ 2 = 10 + 1;
- 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.
12 011 111 111 111 297(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
12 011 111 111 111 297 (base 10) = 10 1010 1010 1100 0000 1010 1011 1011 0010 0010 1011 0010 1000 0001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.