What are the required steps to convert base 10 decimal system
number 1 001 001 101 110 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;
- 1 001 001 101 110 197 ÷ 2 = 500 500 550 555 098 + 1;
- 500 500 550 555 098 ÷ 2 = 250 250 275 277 549 + 0;
- 250 250 275 277 549 ÷ 2 = 125 125 137 638 774 + 1;
- 125 125 137 638 774 ÷ 2 = 62 562 568 819 387 + 0;
- 62 562 568 819 387 ÷ 2 = 31 281 284 409 693 + 1;
- 31 281 284 409 693 ÷ 2 = 15 640 642 204 846 + 1;
- 15 640 642 204 846 ÷ 2 = 7 820 321 102 423 + 0;
- 7 820 321 102 423 ÷ 2 = 3 910 160 551 211 + 1;
- 3 910 160 551 211 ÷ 2 = 1 955 080 275 605 + 1;
- 1 955 080 275 605 ÷ 2 = 977 540 137 802 + 1;
- 977 540 137 802 ÷ 2 = 488 770 068 901 + 0;
- 488 770 068 901 ÷ 2 = 244 385 034 450 + 1;
- 244 385 034 450 ÷ 2 = 122 192 517 225 + 0;
- 122 192 517 225 ÷ 2 = 61 096 258 612 + 1;
- 61 096 258 612 ÷ 2 = 30 548 129 306 + 0;
- 30 548 129 306 ÷ 2 = 15 274 064 653 + 0;
- 15 274 064 653 ÷ 2 = 7 637 032 326 + 1;
- 7 637 032 326 ÷ 2 = 3 818 516 163 + 0;
- 3 818 516 163 ÷ 2 = 1 909 258 081 + 1;
- 1 909 258 081 ÷ 2 = 954 629 040 + 1;
- 954 629 040 ÷ 2 = 477 314 520 + 0;
- 477 314 520 ÷ 2 = 238 657 260 + 0;
- 238 657 260 ÷ 2 = 119 328 630 + 0;
- 119 328 630 ÷ 2 = 59 664 315 + 0;
- 59 664 315 ÷ 2 = 29 832 157 + 1;
- 29 832 157 ÷ 2 = 14 916 078 + 1;
- 14 916 078 ÷ 2 = 7 458 039 + 0;
- 7 458 039 ÷ 2 = 3 729 019 + 1;
- 3 729 019 ÷ 2 = 1 864 509 + 1;
- 1 864 509 ÷ 2 = 932 254 + 1;
- 932 254 ÷ 2 = 466 127 + 0;
- 466 127 ÷ 2 = 233 063 + 1;
- 233 063 ÷ 2 = 116 531 + 1;
- 116 531 ÷ 2 = 58 265 + 1;
- 58 265 ÷ 2 = 29 132 + 1;
- 29 132 ÷ 2 = 14 566 + 0;
- 14 566 ÷ 2 = 7 283 + 0;
- 7 283 ÷ 2 = 3 641 + 1;
- 3 641 ÷ 2 = 1 820 + 1;
- 1 820 ÷ 2 = 910 + 0;
- 910 ÷ 2 = 455 + 0;
- 455 ÷ 2 = 227 + 1;
- 227 ÷ 2 = 113 + 1;
- 113 ÷ 2 = 56 + 1;
- 56 ÷ 2 = 28 + 0;
- 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.
1 001 001 101 110 197(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 001 001 101 110 197 (base 10) = 11 1000 1110 0110 0111 1011 1011 0000 1101 0010 1011 1011 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.