What are the required steps to convert base 10 decimal system
number 69 628 809 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;
- 69 628 809 ÷ 2 = 34 814 404 + 1;
- 34 814 404 ÷ 2 = 17 407 202 + 0;
- 17 407 202 ÷ 2 = 8 703 601 + 0;
- 8 703 601 ÷ 2 = 4 351 800 + 1;
- 4 351 800 ÷ 2 = 2 175 900 + 0;
- 2 175 900 ÷ 2 = 1 087 950 + 0;
- 1 087 950 ÷ 2 = 543 975 + 0;
- 543 975 ÷ 2 = 271 987 + 1;
- 271 987 ÷ 2 = 135 993 + 1;
- 135 993 ÷ 2 = 67 996 + 1;
- 67 996 ÷ 2 = 33 998 + 0;
- 33 998 ÷ 2 = 16 999 + 0;
- 16 999 ÷ 2 = 8 499 + 1;
- 8 499 ÷ 2 = 4 249 + 1;
- 4 249 ÷ 2 = 2 124 + 1;
- 2 124 ÷ 2 = 1 062 + 0;
- 1 062 ÷ 2 = 531 + 0;
- 531 ÷ 2 = 265 + 1;
- 265 ÷ 2 = 132 + 1;
- 132 ÷ 2 = 66 + 0;
- 66 ÷ 2 = 33 + 0;
- 33 ÷ 2 = 16 + 1;
- 16 ÷ 2 = 8 + 0;
- 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.
69 628 809(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
69 628 809 (base 10) = 100 0010 0110 0111 0011 1000 1001 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.