What are the required steps to convert base 10 decimal system
number 1 100 001 101 099 647 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;
- 1 100 001 101 099 647 ÷ 2 = 550 000 550 549 823 + 1;
- 550 000 550 549 823 ÷ 2 = 275 000 275 274 911 + 1;
- 275 000 275 274 911 ÷ 2 = 137 500 137 637 455 + 1;
- 137 500 137 637 455 ÷ 2 = 68 750 068 818 727 + 1;
- 68 750 068 818 727 ÷ 2 = 34 375 034 409 363 + 1;
- 34 375 034 409 363 ÷ 2 = 17 187 517 204 681 + 1;
- 17 187 517 204 681 ÷ 2 = 8 593 758 602 340 + 1;
- 8 593 758 602 340 ÷ 2 = 4 296 879 301 170 + 0;
- 4 296 879 301 170 ÷ 2 = 2 148 439 650 585 + 0;
- 2 148 439 650 585 ÷ 2 = 1 074 219 825 292 + 1;
- 1 074 219 825 292 ÷ 2 = 537 109 912 646 + 0;
- 537 109 912 646 ÷ 2 = 268 554 956 323 + 0;
- 268 554 956 323 ÷ 2 = 134 277 478 161 + 1;
- 134 277 478 161 ÷ 2 = 67 138 739 080 + 1;
- 67 138 739 080 ÷ 2 = 33 569 369 540 + 0;
- 33 569 369 540 ÷ 2 = 16 784 684 770 + 0;
- 16 784 684 770 ÷ 2 = 8 392 342 385 + 0;
- 8 392 342 385 ÷ 2 = 4 196 171 192 + 1;
- 4 196 171 192 ÷ 2 = 2 098 085 596 + 0;
- 2 098 085 596 ÷ 2 = 1 049 042 798 + 0;
- 1 049 042 798 ÷ 2 = 524 521 399 + 0;
- 524 521 399 ÷ 2 = 262 260 699 + 1;
- 262 260 699 ÷ 2 = 131 130 349 + 1;
- 131 130 349 ÷ 2 = 65 565 174 + 1;
- 65 565 174 ÷ 2 = 32 782 587 + 0;
- 32 782 587 ÷ 2 = 16 391 293 + 1;
- 16 391 293 ÷ 2 = 8 195 646 + 1;
- 8 195 646 ÷ 2 = 4 097 823 + 0;
- 4 097 823 ÷ 2 = 2 048 911 + 1;
- 2 048 911 ÷ 2 = 1 024 455 + 1;
- 1 024 455 ÷ 2 = 512 227 + 1;
- 512 227 ÷ 2 = 256 113 + 1;
- 256 113 ÷ 2 = 128 056 + 1;
- 128 056 ÷ 2 = 64 028 + 0;
- 64 028 ÷ 2 = 32 014 + 0;
- 32 014 ÷ 2 = 16 007 + 0;
- 16 007 ÷ 2 = 8 003 + 1;
- 8 003 ÷ 2 = 4 001 + 1;
- 4 001 ÷ 2 = 2 000 + 1;
- 2 000 ÷ 2 = 1 000 + 0;
- 1 000 ÷ 2 = 500 + 0;
- 500 ÷ 2 = 250 + 0;
- 250 ÷ 2 = 125 + 0;
- 125 ÷ 2 = 62 + 1;
- 62 ÷ 2 = 31 + 0;
- 31 ÷ 2 = 15 + 1;
- 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.
1 100 001 101 099 647(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 100 001 101 099 647 (base 10) = 11 1110 1000 0111 0001 1111 0110 1110 0010 0011 0010 0111 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.