What are the required steps to convert base 10 decimal system
number 486 067 872 044 037 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;
- 486 067 872 044 037 ÷ 2 = 243 033 936 022 018 + 1;
- 243 033 936 022 018 ÷ 2 = 121 516 968 011 009 + 0;
- 121 516 968 011 009 ÷ 2 = 60 758 484 005 504 + 1;
- 60 758 484 005 504 ÷ 2 = 30 379 242 002 752 + 0;
- 30 379 242 002 752 ÷ 2 = 15 189 621 001 376 + 0;
- 15 189 621 001 376 ÷ 2 = 7 594 810 500 688 + 0;
- 7 594 810 500 688 ÷ 2 = 3 797 405 250 344 + 0;
- 3 797 405 250 344 ÷ 2 = 1 898 702 625 172 + 0;
- 1 898 702 625 172 ÷ 2 = 949 351 312 586 + 0;
- 949 351 312 586 ÷ 2 = 474 675 656 293 + 0;
- 474 675 656 293 ÷ 2 = 237 337 828 146 + 1;
- 237 337 828 146 ÷ 2 = 118 668 914 073 + 0;
- 118 668 914 073 ÷ 2 = 59 334 457 036 + 1;
- 59 334 457 036 ÷ 2 = 29 667 228 518 + 0;
- 29 667 228 518 ÷ 2 = 14 833 614 259 + 0;
- 14 833 614 259 ÷ 2 = 7 416 807 129 + 1;
- 7 416 807 129 ÷ 2 = 3 708 403 564 + 1;
- 3 708 403 564 ÷ 2 = 1 854 201 782 + 0;
- 1 854 201 782 ÷ 2 = 927 100 891 + 0;
- 927 100 891 ÷ 2 = 463 550 445 + 1;
- 463 550 445 ÷ 2 = 231 775 222 + 1;
- 231 775 222 ÷ 2 = 115 887 611 + 0;
- 115 887 611 ÷ 2 = 57 943 805 + 1;
- 57 943 805 ÷ 2 = 28 971 902 + 1;
- 28 971 902 ÷ 2 = 14 485 951 + 0;
- 14 485 951 ÷ 2 = 7 242 975 + 1;
- 7 242 975 ÷ 2 = 3 621 487 + 1;
- 3 621 487 ÷ 2 = 1 810 743 + 1;
- 1 810 743 ÷ 2 = 905 371 + 1;
- 905 371 ÷ 2 = 452 685 + 1;
- 452 685 ÷ 2 = 226 342 + 1;
- 226 342 ÷ 2 = 113 171 + 0;
- 113 171 ÷ 2 = 56 585 + 1;
- 56 585 ÷ 2 = 28 292 + 1;
- 28 292 ÷ 2 = 14 146 + 0;
- 14 146 ÷ 2 = 7 073 + 0;
- 7 073 ÷ 2 = 3 536 + 1;
- 3 536 ÷ 2 = 1 768 + 0;
- 1 768 ÷ 2 = 884 + 0;
- 884 ÷ 2 = 442 + 0;
- 442 ÷ 2 = 221 + 0;
- 221 ÷ 2 = 110 + 1;
- 110 ÷ 2 = 55 + 0;
- 55 ÷ 2 = 27 + 1;
- 27 ÷ 2 = 13 + 1;
- 13 ÷ 2 = 6 + 1;
- 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.
486 067 872 044 037(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
486 067 872 044 037 (base 10) = 1 1011 1010 0001 0011 0111 1110 1101 1001 1001 0100 0000 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.