What are the required steps to convert base 10 decimal system
number 11 111 111 111 114 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 111 111 111 114 ÷ 2 = 5 555 555 555 557 + 0;
- 5 555 555 555 557 ÷ 2 = 2 777 777 777 778 + 1;
- 2 777 777 777 778 ÷ 2 = 1 388 888 888 889 + 0;
- 1 388 888 888 889 ÷ 2 = 694 444 444 444 + 1;
- 694 444 444 444 ÷ 2 = 347 222 222 222 + 0;
- 347 222 222 222 ÷ 2 = 173 611 111 111 + 0;
- 173 611 111 111 ÷ 2 = 86 805 555 555 + 1;
- 86 805 555 555 ÷ 2 = 43 402 777 777 + 1;
- 43 402 777 777 ÷ 2 = 21 701 388 888 + 1;
- 21 701 388 888 ÷ 2 = 10 850 694 444 + 0;
- 10 850 694 444 ÷ 2 = 5 425 347 222 + 0;
- 5 425 347 222 ÷ 2 = 2 712 673 611 + 0;
- 2 712 673 611 ÷ 2 = 1 356 336 805 + 1;
- 1 356 336 805 ÷ 2 = 678 168 402 + 1;
- 678 168 402 ÷ 2 = 339 084 201 + 0;
- 339 084 201 ÷ 2 = 169 542 100 + 1;
- 169 542 100 ÷ 2 = 84 771 050 + 0;
- 84 771 050 ÷ 2 = 42 385 525 + 0;
- 42 385 525 ÷ 2 = 21 192 762 + 1;
- 21 192 762 ÷ 2 = 10 596 381 + 0;
- 10 596 381 ÷ 2 = 5 298 190 + 1;
- 5 298 190 ÷ 2 = 2 649 095 + 0;
- 2 649 095 ÷ 2 = 1 324 547 + 1;
- 1 324 547 ÷ 2 = 662 273 + 1;
- 662 273 ÷ 2 = 331 136 + 1;
- 331 136 ÷ 2 = 165 568 + 0;
- 165 568 ÷ 2 = 82 784 + 0;
- 82 784 ÷ 2 = 41 392 + 0;
- 41 392 ÷ 2 = 20 696 + 0;
- 20 696 ÷ 2 = 10 348 + 0;
- 10 348 ÷ 2 = 5 174 + 0;
- 5 174 ÷ 2 = 2 587 + 0;
- 2 587 ÷ 2 = 1 293 + 1;
- 1 293 ÷ 2 = 646 + 1;
- 646 ÷ 2 = 323 + 0;
- 323 ÷ 2 = 161 + 1;
- 161 ÷ 2 = 80 + 1;
- 80 ÷ 2 = 40 + 0;
- 40 ÷ 2 = 20 + 0;
- 20 ÷ 2 = 10 + 0;
- 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.
11 111 111 111 114(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
11 111 111 111 114 (base 10) = 1010 0001 1011 0000 0001 1101 0100 1011 0001 1100 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.