What are the required steps to convert base 10 decimal system
number 121 418 419 238 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;
- 121 418 419 238 ÷ 2 = 60 709 209 619 + 0;
- 60 709 209 619 ÷ 2 = 30 354 604 809 + 1;
- 30 354 604 809 ÷ 2 = 15 177 302 404 + 1;
- 15 177 302 404 ÷ 2 = 7 588 651 202 + 0;
- 7 588 651 202 ÷ 2 = 3 794 325 601 + 0;
- 3 794 325 601 ÷ 2 = 1 897 162 800 + 1;
- 1 897 162 800 ÷ 2 = 948 581 400 + 0;
- 948 581 400 ÷ 2 = 474 290 700 + 0;
- 474 290 700 ÷ 2 = 237 145 350 + 0;
- 237 145 350 ÷ 2 = 118 572 675 + 0;
- 118 572 675 ÷ 2 = 59 286 337 + 1;
- 59 286 337 ÷ 2 = 29 643 168 + 1;
- 29 643 168 ÷ 2 = 14 821 584 + 0;
- 14 821 584 ÷ 2 = 7 410 792 + 0;
- 7 410 792 ÷ 2 = 3 705 396 + 0;
- 3 705 396 ÷ 2 = 1 852 698 + 0;
- 1 852 698 ÷ 2 = 926 349 + 0;
- 926 349 ÷ 2 = 463 174 + 1;
- 463 174 ÷ 2 = 231 587 + 0;
- 231 587 ÷ 2 = 115 793 + 1;
- 115 793 ÷ 2 = 57 896 + 1;
- 57 896 ÷ 2 = 28 948 + 0;
- 28 948 ÷ 2 = 14 474 + 0;
- 14 474 ÷ 2 = 7 237 + 0;
- 7 237 ÷ 2 = 3 618 + 1;
- 3 618 ÷ 2 = 1 809 + 0;
- 1 809 ÷ 2 = 904 + 1;
- 904 ÷ 2 = 452 + 0;
- 452 ÷ 2 = 226 + 0;
- 226 ÷ 2 = 113 + 0;
- 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.
121 418 419 238(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
121 418 419 238 (base 10) = 1 1100 0100 0101 0001 1010 0000 1100 0010 0110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.