What are the required steps to convert base 10 decimal system
number 3 294 821 952 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;
- 3 294 821 952 ÷ 2 = 1 647 410 976 + 0;
- 1 647 410 976 ÷ 2 = 823 705 488 + 0;
- 823 705 488 ÷ 2 = 411 852 744 + 0;
- 411 852 744 ÷ 2 = 205 926 372 + 0;
- 205 926 372 ÷ 2 = 102 963 186 + 0;
- 102 963 186 ÷ 2 = 51 481 593 + 0;
- 51 481 593 ÷ 2 = 25 740 796 + 1;
- 25 740 796 ÷ 2 = 12 870 398 + 0;
- 12 870 398 ÷ 2 = 6 435 199 + 0;
- 6 435 199 ÷ 2 = 3 217 599 + 1;
- 3 217 599 ÷ 2 = 1 608 799 + 1;
- 1 608 799 ÷ 2 = 804 399 + 1;
- 804 399 ÷ 2 = 402 199 + 1;
- 402 199 ÷ 2 = 201 099 + 1;
- 201 099 ÷ 2 = 100 549 + 1;
- 100 549 ÷ 2 = 50 274 + 1;
- 50 274 ÷ 2 = 25 137 + 0;
- 25 137 ÷ 2 = 12 568 + 1;
- 12 568 ÷ 2 = 6 284 + 0;
- 6 284 ÷ 2 = 3 142 + 0;
- 3 142 ÷ 2 = 1 571 + 0;
- 1 571 ÷ 2 = 785 + 1;
- 785 ÷ 2 = 392 + 1;
- 392 ÷ 2 = 196 + 0;
- 196 ÷ 2 = 98 + 0;
- 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.
3 294 821 952(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
3 294 821 952 (base 10) = 1100 0100 0110 0010 1111 1110 0100 0000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.