What are the required steps to convert base 10 decimal system
number 947 912 879 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;
- 947 912 879 ÷ 2 = 473 956 439 + 1;
- 473 956 439 ÷ 2 = 236 978 219 + 1;
- 236 978 219 ÷ 2 = 118 489 109 + 1;
- 118 489 109 ÷ 2 = 59 244 554 + 1;
- 59 244 554 ÷ 2 = 29 622 277 + 0;
- 29 622 277 ÷ 2 = 14 811 138 + 1;
- 14 811 138 ÷ 2 = 7 405 569 + 0;
- 7 405 569 ÷ 2 = 3 702 784 + 1;
- 3 702 784 ÷ 2 = 1 851 392 + 0;
- 1 851 392 ÷ 2 = 925 696 + 0;
- 925 696 ÷ 2 = 462 848 + 0;
- 462 848 ÷ 2 = 231 424 + 0;
- 231 424 ÷ 2 = 115 712 + 0;
- 115 712 ÷ 2 = 57 856 + 0;
- 57 856 ÷ 2 = 28 928 + 0;
- 28 928 ÷ 2 = 14 464 + 0;
- 14 464 ÷ 2 = 7 232 + 0;
- 7 232 ÷ 2 = 3 616 + 0;
- 3 616 ÷ 2 = 1 808 + 0;
- 1 808 ÷ 2 = 904 + 0;
- 904 ÷ 2 = 452 + 0;
- 452 ÷ 2 = 226 + 0;
- 226 ÷ 2 = 113 + 0;
- 113 ÷ 2 = 56 + 1;
- 56 ÷ 2 = 28 + 0;
- 28 ÷ 2 = 14 + 0;
- 14 ÷ 2 = 7 + 0;
- 7 ÷ 2 = 3 + 1;
- 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.
947 912 879(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
947 912 879 (base 10) = 11 1000 1000 0000 0000 0000 1010 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.