What are the required steps to convert base 10 decimal system
number 206 842 439 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;
- 206 842 439 ÷ 2 = 103 421 219 + 1;
- 103 421 219 ÷ 2 = 51 710 609 + 1;
- 51 710 609 ÷ 2 = 25 855 304 + 1;
- 25 855 304 ÷ 2 = 12 927 652 + 0;
- 12 927 652 ÷ 2 = 6 463 826 + 0;
- 6 463 826 ÷ 2 = 3 231 913 + 0;
- 3 231 913 ÷ 2 = 1 615 956 + 1;
- 1 615 956 ÷ 2 = 807 978 + 0;
- 807 978 ÷ 2 = 403 989 + 0;
- 403 989 ÷ 2 = 201 994 + 1;
- 201 994 ÷ 2 = 100 997 + 0;
- 100 997 ÷ 2 = 50 498 + 1;
- 50 498 ÷ 2 = 25 249 + 0;
- 25 249 ÷ 2 = 12 624 + 1;
- 12 624 ÷ 2 = 6 312 + 0;
- 6 312 ÷ 2 = 3 156 + 0;
- 3 156 ÷ 2 = 1 578 + 0;
- 1 578 ÷ 2 = 789 + 0;
- 789 ÷ 2 = 394 + 1;
- 394 ÷ 2 = 197 + 0;
- 197 ÷ 2 = 98 + 1;
- 98 ÷ 2 = 49 + 0;
- 49 ÷ 2 = 24 + 1;
- 24 ÷ 2 = 12 + 0;
- 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.
206 842 439(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
206 842 439 (base 10) = 1100 0101 0100 0010 1010 0100 0111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.