What are the required steps to convert base 10 decimal system
number 65 566 566 656 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;
- 65 566 566 656 ÷ 2 = 32 783 283 328 + 0;
- 32 783 283 328 ÷ 2 = 16 391 641 664 + 0;
- 16 391 641 664 ÷ 2 = 8 195 820 832 + 0;
- 8 195 820 832 ÷ 2 = 4 097 910 416 + 0;
- 4 097 910 416 ÷ 2 = 2 048 955 208 + 0;
- 2 048 955 208 ÷ 2 = 1 024 477 604 + 0;
- 1 024 477 604 ÷ 2 = 512 238 802 + 0;
- 512 238 802 ÷ 2 = 256 119 401 + 0;
- 256 119 401 ÷ 2 = 128 059 700 + 1;
- 128 059 700 ÷ 2 = 64 029 850 + 0;
- 64 029 850 ÷ 2 = 32 014 925 + 0;
- 32 014 925 ÷ 2 = 16 007 462 + 1;
- 16 007 462 ÷ 2 = 8 003 731 + 0;
- 8 003 731 ÷ 2 = 4 001 865 + 1;
- 4 001 865 ÷ 2 = 2 000 932 + 1;
- 2 000 932 ÷ 2 = 1 000 466 + 0;
- 1 000 466 ÷ 2 = 500 233 + 0;
- 500 233 ÷ 2 = 250 116 + 1;
- 250 116 ÷ 2 = 125 058 + 0;
- 125 058 ÷ 2 = 62 529 + 0;
- 62 529 ÷ 2 = 31 264 + 1;
- 31 264 ÷ 2 = 15 632 + 0;
- 15 632 ÷ 2 = 7 816 + 0;
- 7 816 ÷ 2 = 3 908 + 0;
- 3 908 ÷ 2 = 1 954 + 0;
- 1 954 ÷ 2 = 977 + 0;
- 977 ÷ 2 = 488 + 1;
- 488 ÷ 2 = 244 + 0;
- 244 ÷ 2 = 122 + 0;
- 122 ÷ 2 = 61 + 0;
- 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.
65 566 566 656(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
65 566 566 656 (base 10) = 1111 0100 0100 0001 0010 0110 1001 0000 0000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.