What are the required steps to convert base 10 decimal system
number 86 339 731 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;
- 86 339 731 ÷ 2 = 43 169 865 + 1;
- 43 169 865 ÷ 2 = 21 584 932 + 1;
- 21 584 932 ÷ 2 = 10 792 466 + 0;
- 10 792 466 ÷ 2 = 5 396 233 + 0;
- 5 396 233 ÷ 2 = 2 698 116 + 1;
- 2 698 116 ÷ 2 = 1 349 058 + 0;
- 1 349 058 ÷ 2 = 674 529 + 0;
- 674 529 ÷ 2 = 337 264 + 1;
- 337 264 ÷ 2 = 168 632 + 0;
- 168 632 ÷ 2 = 84 316 + 0;
- 84 316 ÷ 2 = 42 158 + 0;
- 42 158 ÷ 2 = 21 079 + 0;
- 21 079 ÷ 2 = 10 539 + 1;
- 10 539 ÷ 2 = 5 269 + 1;
- 5 269 ÷ 2 = 2 634 + 1;
- 2 634 ÷ 2 = 1 317 + 0;
- 1 317 ÷ 2 = 658 + 1;
- 658 ÷ 2 = 329 + 0;
- 329 ÷ 2 = 164 + 1;
- 164 ÷ 2 = 82 + 0;
- 82 ÷ 2 = 41 + 0;
- 41 ÷ 2 = 20 + 1;
- 20 ÷ 2 = 10 + 0;
- 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.
86 339 731(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
86 339 731 (base 10) = 101 0010 0101 0111 0000 1001 0011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.