What are the required steps to convert base 10 decimal system
number 714 292 684 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;
- 714 292 684 ÷ 2 = 357 146 342 + 0;
- 357 146 342 ÷ 2 = 178 573 171 + 0;
- 178 573 171 ÷ 2 = 89 286 585 + 1;
- 89 286 585 ÷ 2 = 44 643 292 + 1;
- 44 643 292 ÷ 2 = 22 321 646 + 0;
- 22 321 646 ÷ 2 = 11 160 823 + 0;
- 11 160 823 ÷ 2 = 5 580 411 + 1;
- 5 580 411 ÷ 2 = 2 790 205 + 1;
- 2 790 205 ÷ 2 = 1 395 102 + 1;
- 1 395 102 ÷ 2 = 697 551 + 0;
- 697 551 ÷ 2 = 348 775 + 1;
- 348 775 ÷ 2 = 174 387 + 1;
- 174 387 ÷ 2 = 87 193 + 1;
- 87 193 ÷ 2 = 43 596 + 1;
- 43 596 ÷ 2 = 21 798 + 0;
- 21 798 ÷ 2 = 10 899 + 0;
- 10 899 ÷ 2 = 5 449 + 1;
- 5 449 ÷ 2 = 2 724 + 1;
- 2 724 ÷ 2 = 1 362 + 0;
- 1 362 ÷ 2 = 681 + 0;
- 681 ÷ 2 = 340 + 1;
- 340 ÷ 2 = 170 + 0;
- 170 ÷ 2 = 85 + 0;
- 85 ÷ 2 = 42 + 1;
- 42 ÷ 2 = 21 + 0;
- 21 ÷ 2 = 10 + 1;
- 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.
714 292 684(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
714 292 684 (base 10) = 10 1010 1001 0011 0011 1101 1100 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.