What are the required steps to convert base 10 decimal system
number 747 810 964 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;
- 747 810 964 ÷ 2 = 373 905 482 + 0;
- 373 905 482 ÷ 2 = 186 952 741 + 0;
- 186 952 741 ÷ 2 = 93 476 370 + 1;
- 93 476 370 ÷ 2 = 46 738 185 + 0;
- 46 738 185 ÷ 2 = 23 369 092 + 1;
- 23 369 092 ÷ 2 = 11 684 546 + 0;
- 11 684 546 ÷ 2 = 5 842 273 + 0;
- 5 842 273 ÷ 2 = 2 921 136 + 1;
- 2 921 136 ÷ 2 = 1 460 568 + 0;
- 1 460 568 ÷ 2 = 730 284 + 0;
- 730 284 ÷ 2 = 365 142 + 0;
- 365 142 ÷ 2 = 182 571 + 0;
- 182 571 ÷ 2 = 91 285 + 1;
- 91 285 ÷ 2 = 45 642 + 1;
- 45 642 ÷ 2 = 22 821 + 0;
- 22 821 ÷ 2 = 11 410 + 1;
- 11 410 ÷ 2 = 5 705 + 0;
- 5 705 ÷ 2 = 2 852 + 1;
- 2 852 ÷ 2 = 1 426 + 0;
- 1 426 ÷ 2 = 713 + 0;
- 713 ÷ 2 = 356 + 1;
- 356 ÷ 2 = 178 + 0;
- 178 ÷ 2 = 89 + 0;
- 89 ÷ 2 = 44 + 1;
- 44 ÷ 2 = 22 + 0;
- 22 ÷ 2 = 11 + 0;
- 11 ÷ 2 = 5 + 1;
- 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.
747 810 964(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
747 810 964 (base 10) = 10 1100 1001 0010 1011 0000 1001 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.