What are the required steps to convert base 10 decimal system
number 100 011 000 000 197 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 011 000 000 197 ÷ 2 = 50 005 500 000 098 + 1;
- 50 005 500 000 098 ÷ 2 = 25 002 750 000 049 + 0;
- 25 002 750 000 049 ÷ 2 = 12 501 375 000 024 + 1;
- 12 501 375 000 024 ÷ 2 = 6 250 687 500 012 + 0;
- 6 250 687 500 012 ÷ 2 = 3 125 343 750 006 + 0;
- 3 125 343 750 006 ÷ 2 = 1 562 671 875 003 + 0;
- 1 562 671 875 003 ÷ 2 = 781 335 937 501 + 1;
- 781 335 937 501 ÷ 2 = 390 667 968 750 + 1;
- 390 667 968 750 ÷ 2 = 195 333 984 375 + 0;
- 195 333 984 375 ÷ 2 = 97 666 992 187 + 1;
- 97 666 992 187 ÷ 2 = 48 833 496 093 + 1;
- 48 833 496 093 ÷ 2 = 24 416 748 046 + 1;
- 24 416 748 046 ÷ 2 = 12 208 374 023 + 0;
- 12 208 374 023 ÷ 2 = 6 104 187 011 + 1;
- 6 104 187 011 ÷ 2 = 3 052 093 505 + 1;
- 3 052 093 505 ÷ 2 = 1 526 046 752 + 1;
- 1 526 046 752 ÷ 2 = 763 023 376 + 0;
- 763 023 376 ÷ 2 = 381 511 688 + 0;
- 381 511 688 ÷ 2 = 190 755 844 + 0;
- 190 755 844 ÷ 2 = 95 377 922 + 0;
- 95 377 922 ÷ 2 = 47 688 961 + 0;
- 47 688 961 ÷ 2 = 23 844 480 + 1;
- 23 844 480 ÷ 2 = 11 922 240 + 0;
- 11 922 240 ÷ 2 = 5 961 120 + 0;
- 5 961 120 ÷ 2 = 2 980 560 + 0;
- 2 980 560 ÷ 2 = 1 490 280 + 0;
- 1 490 280 ÷ 2 = 745 140 + 0;
- 745 140 ÷ 2 = 372 570 + 0;
- 372 570 ÷ 2 = 186 285 + 0;
- 186 285 ÷ 2 = 93 142 + 1;
- 93 142 ÷ 2 = 46 571 + 0;
- 46 571 ÷ 2 = 23 285 + 1;
- 23 285 ÷ 2 = 11 642 + 1;
- 11 642 ÷ 2 = 5 821 + 0;
- 5 821 ÷ 2 = 2 910 + 1;
- 2 910 ÷ 2 = 1 455 + 0;
- 1 455 ÷ 2 = 727 + 1;
- 727 ÷ 2 = 363 + 1;
- 363 ÷ 2 = 181 + 1;
- 181 ÷ 2 = 90 + 1;
- 90 ÷ 2 = 45 + 0;
- 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 011 000 000 197(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
100 011 000 000 197 (base 10) = 101 1010 1111 0101 1010 0000 0010 0000 1110 1110 1100 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.