What are the required steps to convert base 10 decimal system
number 217 985 049 490 882 530 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;
- 217 985 049 490 882 530 ÷ 2 = 108 992 524 745 441 265 + 0;
- 108 992 524 745 441 265 ÷ 2 = 54 496 262 372 720 632 + 1;
- 54 496 262 372 720 632 ÷ 2 = 27 248 131 186 360 316 + 0;
- 27 248 131 186 360 316 ÷ 2 = 13 624 065 593 180 158 + 0;
- 13 624 065 593 180 158 ÷ 2 = 6 812 032 796 590 079 + 0;
- 6 812 032 796 590 079 ÷ 2 = 3 406 016 398 295 039 + 1;
- 3 406 016 398 295 039 ÷ 2 = 1 703 008 199 147 519 + 1;
- 1 703 008 199 147 519 ÷ 2 = 851 504 099 573 759 + 1;
- 851 504 099 573 759 ÷ 2 = 425 752 049 786 879 + 1;
- 425 752 049 786 879 ÷ 2 = 212 876 024 893 439 + 1;
- 212 876 024 893 439 ÷ 2 = 106 438 012 446 719 + 1;
- 106 438 012 446 719 ÷ 2 = 53 219 006 223 359 + 1;
- 53 219 006 223 359 ÷ 2 = 26 609 503 111 679 + 1;
- 26 609 503 111 679 ÷ 2 = 13 304 751 555 839 + 1;
- 13 304 751 555 839 ÷ 2 = 6 652 375 777 919 + 1;
- 6 652 375 777 919 ÷ 2 = 3 326 187 888 959 + 1;
- 3 326 187 888 959 ÷ 2 = 1 663 093 944 479 + 1;
- 1 663 093 944 479 ÷ 2 = 831 546 972 239 + 1;
- 831 546 972 239 ÷ 2 = 415 773 486 119 + 1;
- 415 773 486 119 ÷ 2 = 207 886 743 059 + 1;
- 207 886 743 059 ÷ 2 = 103 943 371 529 + 1;
- 103 943 371 529 ÷ 2 = 51 971 685 764 + 1;
- 51 971 685 764 ÷ 2 = 25 985 842 882 + 0;
- 25 985 842 882 ÷ 2 = 12 992 921 441 + 0;
- 12 992 921 441 ÷ 2 = 6 496 460 720 + 1;
- 6 496 460 720 ÷ 2 = 3 248 230 360 + 0;
- 3 248 230 360 ÷ 2 = 1 624 115 180 + 0;
- 1 624 115 180 ÷ 2 = 812 057 590 + 0;
- 812 057 590 ÷ 2 = 406 028 795 + 0;
- 406 028 795 ÷ 2 = 203 014 397 + 1;
- 203 014 397 ÷ 2 = 101 507 198 + 1;
- 101 507 198 ÷ 2 = 50 753 599 + 0;
- 50 753 599 ÷ 2 = 25 376 799 + 1;
- 25 376 799 ÷ 2 = 12 688 399 + 1;
- 12 688 399 ÷ 2 = 6 344 199 + 1;
- 6 344 199 ÷ 2 = 3 172 099 + 1;
- 3 172 099 ÷ 2 = 1 586 049 + 1;
- 1 586 049 ÷ 2 = 793 024 + 1;
- 793 024 ÷ 2 = 396 512 + 0;
- 396 512 ÷ 2 = 198 256 + 0;
- 198 256 ÷ 2 = 99 128 + 0;
- 99 128 ÷ 2 = 49 564 + 0;
- 49 564 ÷ 2 = 24 782 + 0;
- 24 782 ÷ 2 = 12 391 + 0;
- 12 391 ÷ 2 = 6 195 + 1;
- 6 195 ÷ 2 = 3 097 + 1;
- 3 097 ÷ 2 = 1 548 + 1;
- 1 548 ÷ 2 = 774 + 0;
- 774 ÷ 2 = 387 + 0;
- 387 ÷ 2 = 193 + 1;
- 193 ÷ 2 = 96 + 1;
- 96 ÷ 2 = 48 + 0;
- 48 ÷ 2 = 24 + 0;
- 24 ÷ 2 = 12 + 0;
- 12 ÷ 2 = 6 + 0;
- 6 ÷ 2 = 3 + 0;
- 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.
217 985 049 490 882 530(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
217 985 049 490 882 530 (base 10) = 11 0000 0110 0111 0000 0011 1111 0110 0001 0011 1111 1111 1111 1110 0010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.