What are the required steps to convert base 10 decimal system
number 66 436 599 245 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;
- 66 436 599 245 ÷ 2 = 33 218 299 622 + 1;
- 33 218 299 622 ÷ 2 = 16 609 149 811 + 0;
- 16 609 149 811 ÷ 2 = 8 304 574 905 + 1;
- 8 304 574 905 ÷ 2 = 4 152 287 452 + 1;
- 4 152 287 452 ÷ 2 = 2 076 143 726 + 0;
- 2 076 143 726 ÷ 2 = 1 038 071 863 + 0;
- 1 038 071 863 ÷ 2 = 519 035 931 + 1;
- 519 035 931 ÷ 2 = 259 517 965 + 1;
- 259 517 965 ÷ 2 = 129 758 982 + 1;
- 129 758 982 ÷ 2 = 64 879 491 + 0;
- 64 879 491 ÷ 2 = 32 439 745 + 1;
- 32 439 745 ÷ 2 = 16 219 872 + 1;
- 16 219 872 ÷ 2 = 8 109 936 + 0;
- 8 109 936 ÷ 2 = 4 054 968 + 0;
- 4 054 968 ÷ 2 = 2 027 484 + 0;
- 2 027 484 ÷ 2 = 1 013 742 + 0;
- 1 013 742 ÷ 2 = 506 871 + 0;
- 506 871 ÷ 2 = 253 435 + 1;
- 253 435 ÷ 2 = 126 717 + 1;
- 126 717 ÷ 2 = 63 358 + 1;
- 63 358 ÷ 2 = 31 679 + 0;
- 31 679 ÷ 2 = 15 839 + 1;
- 15 839 ÷ 2 = 7 919 + 1;
- 7 919 ÷ 2 = 3 959 + 1;
- 3 959 ÷ 2 = 1 979 + 1;
- 1 979 ÷ 2 = 989 + 1;
- 989 ÷ 2 = 494 + 1;
- 494 ÷ 2 = 247 + 0;
- 247 ÷ 2 = 123 + 1;
- 123 ÷ 2 = 61 + 1;
- 61 ÷ 2 = 30 + 1;
- 30 ÷ 2 = 15 + 0;
- 15 ÷ 2 = 7 + 1;
- 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.
66 436 599 245(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
66 436 599 245 (base 10) = 1111 0111 0111 1110 1110 0000 1101 1100 1101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.