What are the required steps to convert base 10 decimal system
number 99 988 322 201 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;
- 99 988 322 201 ÷ 2 = 49 994 161 100 + 1;
- 49 994 161 100 ÷ 2 = 24 997 080 550 + 0;
- 24 997 080 550 ÷ 2 = 12 498 540 275 + 0;
- 12 498 540 275 ÷ 2 = 6 249 270 137 + 1;
- 6 249 270 137 ÷ 2 = 3 124 635 068 + 1;
- 3 124 635 068 ÷ 2 = 1 562 317 534 + 0;
- 1 562 317 534 ÷ 2 = 781 158 767 + 0;
- 781 158 767 ÷ 2 = 390 579 383 + 1;
- 390 579 383 ÷ 2 = 195 289 691 + 1;
- 195 289 691 ÷ 2 = 97 644 845 + 1;
- 97 644 845 ÷ 2 = 48 822 422 + 1;
- 48 822 422 ÷ 2 = 24 411 211 + 0;
- 24 411 211 ÷ 2 = 12 205 605 + 1;
- 12 205 605 ÷ 2 = 6 102 802 + 1;
- 6 102 802 ÷ 2 = 3 051 401 + 0;
- 3 051 401 ÷ 2 = 1 525 700 + 1;
- 1 525 700 ÷ 2 = 762 850 + 0;
- 762 850 ÷ 2 = 381 425 + 0;
- 381 425 ÷ 2 = 190 712 + 1;
- 190 712 ÷ 2 = 95 356 + 0;
- 95 356 ÷ 2 = 47 678 + 0;
- 47 678 ÷ 2 = 23 839 + 0;
- 23 839 ÷ 2 = 11 919 + 1;
- 11 919 ÷ 2 = 5 959 + 1;
- 5 959 ÷ 2 = 2 979 + 1;
- 2 979 ÷ 2 = 1 489 + 1;
- 1 489 ÷ 2 = 744 + 1;
- 744 ÷ 2 = 372 + 0;
- 372 ÷ 2 = 186 + 0;
- 186 ÷ 2 = 93 + 0;
- 93 ÷ 2 = 46 + 1;
- 46 ÷ 2 = 23 + 0;
- 23 ÷ 2 = 11 + 1;
- 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.
99 988 322 201(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
99 988 322 201 (base 10) = 1 0111 0100 0111 1100 0100 1011 0111 1001 1001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.