What are the required steps to convert base 10 decimal system
number 11 000 011 010 099 958 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 011 010 099 958 ÷ 2 = 5 500 005 505 049 979 + 0;
- 5 500 005 505 049 979 ÷ 2 = 2 750 002 752 524 989 + 1;
- 2 750 002 752 524 989 ÷ 2 = 1 375 001 376 262 494 + 1;
- 1 375 001 376 262 494 ÷ 2 = 687 500 688 131 247 + 0;
- 687 500 688 131 247 ÷ 2 = 343 750 344 065 623 + 1;
- 343 750 344 065 623 ÷ 2 = 171 875 172 032 811 + 1;
- 171 875 172 032 811 ÷ 2 = 85 937 586 016 405 + 1;
- 85 937 586 016 405 ÷ 2 = 42 968 793 008 202 + 1;
- 42 968 793 008 202 ÷ 2 = 21 484 396 504 101 + 0;
- 21 484 396 504 101 ÷ 2 = 10 742 198 252 050 + 1;
- 10 742 198 252 050 ÷ 2 = 5 371 099 126 025 + 0;
- 5 371 099 126 025 ÷ 2 = 2 685 549 563 012 + 1;
- 2 685 549 563 012 ÷ 2 = 1 342 774 781 506 + 0;
- 1 342 774 781 506 ÷ 2 = 671 387 390 753 + 0;
- 671 387 390 753 ÷ 2 = 335 693 695 376 + 1;
- 335 693 695 376 ÷ 2 = 167 846 847 688 + 0;
- 167 846 847 688 ÷ 2 = 83 923 423 844 + 0;
- 83 923 423 844 ÷ 2 = 41 961 711 922 + 0;
- 41 961 711 922 ÷ 2 = 20 980 855 961 + 0;
- 20 980 855 961 ÷ 2 = 10 490 427 980 + 1;
- 10 490 427 980 ÷ 2 = 5 245 213 990 + 0;
- 5 245 213 990 ÷ 2 = 2 622 606 995 + 0;
- 2 622 606 995 ÷ 2 = 1 311 303 497 + 1;
- 1 311 303 497 ÷ 2 = 655 651 748 + 1;
- 655 651 748 ÷ 2 = 327 825 874 + 0;
- 327 825 874 ÷ 2 = 163 912 937 + 0;
- 163 912 937 ÷ 2 = 81 956 468 + 1;
- 81 956 468 ÷ 2 = 40 978 234 + 0;
- 40 978 234 ÷ 2 = 20 489 117 + 0;
- 20 489 117 ÷ 2 = 10 244 558 + 1;
- 10 244 558 ÷ 2 = 5 122 279 + 0;
- 5 122 279 ÷ 2 = 2 561 139 + 1;
- 2 561 139 ÷ 2 = 1 280 569 + 1;
- 1 280 569 ÷ 2 = 640 284 + 1;
- 640 284 ÷ 2 = 320 142 + 0;
- 320 142 ÷ 2 = 160 071 + 0;
- 160 071 ÷ 2 = 80 035 + 1;
- 80 035 ÷ 2 = 40 017 + 1;
- 40 017 ÷ 2 = 20 008 + 1;
- 20 008 ÷ 2 = 10 004 + 0;
- 10 004 ÷ 2 = 5 002 + 0;
- 5 002 ÷ 2 = 2 501 + 0;
- 2 501 ÷ 2 = 1 250 + 1;
- 1 250 ÷ 2 = 625 + 0;
- 625 ÷ 2 = 312 + 1;
- 312 ÷ 2 = 156 + 0;
- 156 ÷ 2 = 78 + 0;
- 78 ÷ 2 = 39 + 0;
- 39 ÷ 2 = 19 + 1;
- 19 ÷ 2 = 9 + 1;
- 9 ÷ 2 = 4 + 1;
- 4 ÷ 2 = 2 + 0;
- 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 011 010 099 958(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
11 000 011 010 099 958 (base 10) = 10 0111 0001 0100 0111 0011 1010 0100 1100 1000 0100 1010 1111 0110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.