What are the required steps to convert base 10 decimal system
number 11 000 101 009 567 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;
- 11 000 101 009 567 ÷ 2 = 5 500 050 504 783 + 1;
- 5 500 050 504 783 ÷ 2 = 2 750 025 252 391 + 1;
- 2 750 025 252 391 ÷ 2 = 1 375 012 626 195 + 1;
- 1 375 012 626 195 ÷ 2 = 687 506 313 097 + 1;
- 687 506 313 097 ÷ 2 = 343 753 156 548 + 1;
- 343 753 156 548 ÷ 2 = 171 876 578 274 + 0;
- 171 876 578 274 ÷ 2 = 85 938 289 137 + 0;
- 85 938 289 137 ÷ 2 = 42 969 144 568 + 1;
- 42 969 144 568 ÷ 2 = 21 484 572 284 + 0;
- 21 484 572 284 ÷ 2 = 10 742 286 142 + 0;
- 10 742 286 142 ÷ 2 = 5 371 143 071 + 0;
- 5 371 143 071 ÷ 2 = 2 685 571 535 + 1;
- 2 685 571 535 ÷ 2 = 1 342 785 767 + 1;
- 1 342 785 767 ÷ 2 = 671 392 883 + 1;
- 671 392 883 ÷ 2 = 335 696 441 + 1;
- 335 696 441 ÷ 2 = 167 848 220 + 1;
- 167 848 220 ÷ 2 = 83 924 110 + 0;
- 83 924 110 ÷ 2 = 41 962 055 + 0;
- 41 962 055 ÷ 2 = 20 981 027 + 1;
- 20 981 027 ÷ 2 = 10 490 513 + 1;
- 10 490 513 ÷ 2 = 5 245 256 + 1;
- 5 245 256 ÷ 2 = 2 622 628 + 0;
- 2 622 628 ÷ 2 = 1 311 314 + 0;
- 1 311 314 ÷ 2 = 655 657 + 0;
- 655 657 ÷ 2 = 327 828 + 1;
- 327 828 ÷ 2 = 163 914 + 0;
- 163 914 ÷ 2 = 81 957 + 0;
- 81 957 ÷ 2 = 40 978 + 1;
- 40 978 ÷ 2 = 20 489 + 0;
- 20 489 ÷ 2 = 10 244 + 1;
- 10 244 ÷ 2 = 5 122 + 0;
- 5 122 ÷ 2 = 2 561 + 0;
- 2 561 ÷ 2 = 1 280 + 1;
- 1 280 ÷ 2 = 640 + 0;
- 640 ÷ 2 = 320 + 0;
- 320 ÷ 2 = 160 + 0;
- 160 ÷ 2 = 80 + 0;
- 80 ÷ 2 = 40 + 0;
- 40 ÷ 2 = 20 + 0;
- 20 ÷ 2 = 10 + 0;
- 10 ÷ 2 = 5 + 0;
- 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.
11 000 101 009 567(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
11 000 101 009 567 (base 10) = 1010 0000 0001 0010 1001 0001 1100 1111 1000 1001 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.