What are the required steps to convert base 10 decimal system
number 2 350 933 141 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;
- 2 350 933 141 ÷ 2 = 1 175 466 570 + 1;
- 1 175 466 570 ÷ 2 = 587 733 285 + 0;
- 587 733 285 ÷ 2 = 293 866 642 + 1;
- 293 866 642 ÷ 2 = 146 933 321 + 0;
- 146 933 321 ÷ 2 = 73 466 660 + 1;
- 73 466 660 ÷ 2 = 36 733 330 + 0;
- 36 733 330 ÷ 2 = 18 366 665 + 0;
- 18 366 665 ÷ 2 = 9 183 332 + 1;
- 9 183 332 ÷ 2 = 4 591 666 + 0;
- 4 591 666 ÷ 2 = 2 295 833 + 0;
- 2 295 833 ÷ 2 = 1 147 916 + 1;
- 1 147 916 ÷ 2 = 573 958 + 0;
- 573 958 ÷ 2 = 286 979 + 0;
- 286 979 ÷ 2 = 143 489 + 1;
- 143 489 ÷ 2 = 71 744 + 1;
- 71 744 ÷ 2 = 35 872 + 0;
- 35 872 ÷ 2 = 17 936 + 0;
- 17 936 ÷ 2 = 8 968 + 0;
- 8 968 ÷ 2 = 4 484 + 0;
- 4 484 ÷ 2 = 2 242 + 0;
- 2 242 ÷ 2 = 1 121 + 0;
- 1 121 ÷ 2 = 560 + 1;
- 560 ÷ 2 = 280 + 0;
- 280 ÷ 2 = 140 + 0;
- 140 ÷ 2 = 70 + 0;
- 70 ÷ 2 = 35 + 0;
- 35 ÷ 2 = 17 + 1;
- 17 ÷ 2 = 8 + 1;
- 8 ÷ 2 = 4 + 0;
- 4 ÷ 2 = 2 + 0;
- 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.
2 350 933 141(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
2 350 933 141 (base 10) = 1000 1100 0010 0000 0110 0100 1001 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.