What are the required steps to convert base 10 decimal system
number 214 743 770 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;
- 214 743 770 ÷ 2 = 107 371 885 + 0;
- 107 371 885 ÷ 2 = 53 685 942 + 1;
- 53 685 942 ÷ 2 = 26 842 971 + 0;
- 26 842 971 ÷ 2 = 13 421 485 + 1;
- 13 421 485 ÷ 2 = 6 710 742 + 1;
- 6 710 742 ÷ 2 = 3 355 371 + 0;
- 3 355 371 ÷ 2 = 1 677 685 + 1;
- 1 677 685 ÷ 2 = 838 842 + 1;
- 838 842 ÷ 2 = 419 421 + 0;
- 419 421 ÷ 2 = 209 710 + 1;
- 209 710 ÷ 2 = 104 855 + 0;
- 104 855 ÷ 2 = 52 427 + 1;
- 52 427 ÷ 2 = 26 213 + 1;
- 26 213 ÷ 2 = 13 106 + 1;
- 13 106 ÷ 2 = 6 553 + 0;
- 6 553 ÷ 2 = 3 276 + 1;
- 3 276 ÷ 2 = 1 638 + 0;
- 1 638 ÷ 2 = 819 + 0;
- 819 ÷ 2 = 409 + 1;
- 409 ÷ 2 = 204 + 1;
- 204 ÷ 2 = 102 + 0;
- 102 ÷ 2 = 51 + 0;
- 51 ÷ 2 = 25 + 1;
- 25 ÷ 2 = 12 + 1;
- 12 ÷ 2 = 6 + 0;
- 6 ÷ 2 = 3 + 0;
- 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.
214 743 770(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
214 743 770 (base 10) = 1100 1100 1100 1011 1010 1101 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.