What are the required steps to convert base 10 decimal system
number 314 590 539 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;
- 314 590 539 ÷ 2 = 157 295 269 + 1;
- 157 295 269 ÷ 2 = 78 647 634 + 1;
- 78 647 634 ÷ 2 = 39 323 817 + 0;
- 39 323 817 ÷ 2 = 19 661 908 + 1;
- 19 661 908 ÷ 2 = 9 830 954 + 0;
- 9 830 954 ÷ 2 = 4 915 477 + 0;
- 4 915 477 ÷ 2 = 2 457 738 + 1;
- 2 457 738 ÷ 2 = 1 228 869 + 0;
- 1 228 869 ÷ 2 = 614 434 + 1;
- 614 434 ÷ 2 = 307 217 + 0;
- 307 217 ÷ 2 = 153 608 + 1;
- 153 608 ÷ 2 = 76 804 + 0;
- 76 804 ÷ 2 = 38 402 + 0;
- 38 402 ÷ 2 = 19 201 + 0;
- 19 201 ÷ 2 = 9 600 + 1;
- 9 600 ÷ 2 = 4 800 + 0;
- 4 800 ÷ 2 = 2 400 + 0;
- 2 400 ÷ 2 = 1 200 + 0;
- 1 200 ÷ 2 = 600 + 0;
- 600 ÷ 2 = 300 + 0;
- 300 ÷ 2 = 150 + 0;
- 150 ÷ 2 = 75 + 0;
- 75 ÷ 2 = 37 + 1;
- 37 ÷ 2 = 18 + 1;
- 18 ÷ 2 = 9 + 0;
- 9 ÷ 2 = 4 + 1;
- 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.
314 590 539(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
314 590 539 (base 10) = 1 0010 1100 0000 0100 0101 0100 1011 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.