What are the required steps to convert base 10 decimal system
number 986 543 211 866 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;
- 986 543 211 866 ÷ 2 = 493 271 605 933 + 0;
- 493 271 605 933 ÷ 2 = 246 635 802 966 + 1;
- 246 635 802 966 ÷ 2 = 123 317 901 483 + 0;
- 123 317 901 483 ÷ 2 = 61 658 950 741 + 1;
- 61 658 950 741 ÷ 2 = 30 829 475 370 + 1;
- 30 829 475 370 ÷ 2 = 15 414 737 685 + 0;
- 15 414 737 685 ÷ 2 = 7 707 368 842 + 1;
- 7 707 368 842 ÷ 2 = 3 853 684 421 + 0;
- 3 853 684 421 ÷ 2 = 1 926 842 210 + 1;
- 1 926 842 210 ÷ 2 = 963 421 105 + 0;
- 963 421 105 ÷ 2 = 481 710 552 + 1;
- 481 710 552 ÷ 2 = 240 855 276 + 0;
- 240 855 276 ÷ 2 = 120 427 638 + 0;
- 120 427 638 ÷ 2 = 60 213 819 + 0;
- 60 213 819 ÷ 2 = 30 106 909 + 1;
- 30 106 909 ÷ 2 = 15 053 454 + 1;
- 15 053 454 ÷ 2 = 7 526 727 + 0;
- 7 526 727 ÷ 2 = 3 763 363 + 1;
- 3 763 363 ÷ 2 = 1 881 681 + 1;
- 1 881 681 ÷ 2 = 940 840 + 1;
- 940 840 ÷ 2 = 470 420 + 0;
- 470 420 ÷ 2 = 235 210 + 0;
- 235 210 ÷ 2 = 117 605 + 0;
- 117 605 ÷ 2 = 58 802 + 1;
- 58 802 ÷ 2 = 29 401 + 0;
- 29 401 ÷ 2 = 14 700 + 1;
- 14 700 ÷ 2 = 7 350 + 0;
- 7 350 ÷ 2 = 3 675 + 0;
- 3 675 ÷ 2 = 1 837 + 1;
- 1 837 ÷ 2 = 918 + 1;
- 918 ÷ 2 = 459 + 0;
- 459 ÷ 2 = 229 + 1;
- 229 ÷ 2 = 114 + 1;
- 114 ÷ 2 = 57 + 0;
- 57 ÷ 2 = 28 + 1;
- 28 ÷ 2 = 14 + 0;
- 14 ÷ 2 = 7 + 0;
- 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.
986 543 211 866(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
986 543 211 866 (base 10) = 1110 0101 1011 0010 1000 1110 1100 0101 0101 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.