What are the required steps to convert base 10 decimal system
number 26 000 568 656 604 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;
- 26 000 568 656 604 ÷ 2 = 13 000 284 328 302 + 0;
- 13 000 284 328 302 ÷ 2 = 6 500 142 164 151 + 0;
- 6 500 142 164 151 ÷ 2 = 3 250 071 082 075 + 1;
- 3 250 071 082 075 ÷ 2 = 1 625 035 541 037 + 1;
- 1 625 035 541 037 ÷ 2 = 812 517 770 518 + 1;
- 812 517 770 518 ÷ 2 = 406 258 885 259 + 0;
- 406 258 885 259 ÷ 2 = 203 129 442 629 + 1;
- 203 129 442 629 ÷ 2 = 101 564 721 314 + 1;
- 101 564 721 314 ÷ 2 = 50 782 360 657 + 0;
- 50 782 360 657 ÷ 2 = 25 391 180 328 + 1;
- 25 391 180 328 ÷ 2 = 12 695 590 164 + 0;
- 12 695 590 164 ÷ 2 = 6 347 795 082 + 0;
- 6 347 795 082 ÷ 2 = 3 173 897 541 + 0;
- 3 173 897 541 ÷ 2 = 1 586 948 770 + 1;
- 1 586 948 770 ÷ 2 = 793 474 385 + 0;
- 793 474 385 ÷ 2 = 396 737 192 + 1;
- 396 737 192 ÷ 2 = 198 368 596 + 0;
- 198 368 596 ÷ 2 = 99 184 298 + 0;
- 99 184 298 ÷ 2 = 49 592 149 + 0;
- 49 592 149 ÷ 2 = 24 796 074 + 1;
- 24 796 074 ÷ 2 = 12 398 037 + 0;
- 12 398 037 ÷ 2 = 6 199 018 + 1;
- 6 199 018 ÷ 2 = 3 099 509 + 0;
- 3 099 509 ÷ 2 = 1 549 754 + 1;
- 1 549 754 ÷ 2 = 774 877 + 0;
- 774 877 ÷ 2 = 387 438 + 1;
- 387 438 ÷ 2 = 193 719 + 0;
- 193 719 ÷ 2 = 96 859 + 1;
- 96 859 ÷ 2 = 48 429 + 1;
- 48 429 ÷ 2 = 24 214 + 1;
- 24 214 ÷ 2 = 12 107 + 0;
- 12 107 ÷ 2 = 6 053 + 1;
- 6 053 ÷ 2 = 3 026 + 1;
- 3 026 ÷ 2 = 1 513 + 0;
- 1 513 ÷ 2 = 756 + 1;
- 756 ÷ 2 = 378 + 0;
- 378 ÷ 2 = 189 + 0;
- 189 ÷ 2 = 94 + 1;
- 94 ÷ 2 = 47 + 0;
- 47 ÷ 2 = 23 + 1;
- 23 ÷ 2 = 11 + 1;
- 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.
26 000 568 656 604(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
26 000 568 656 604 (base 10) = 1 0111 1010 0101 1011 1010 1010 1000 1010 0010 1101 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.