What are the required steps to convert base 10 decimal system
number 645 805 865 856 877 492 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;
- 645 805 865 856 877 492 ÷ 2 = 322 902 932 928 438 746 + 0;
- 322 902 932 928 438 746 ÷ 2 = 161 451 466 464 219 373 + 0;
- 161 451 466 464 219 373 ÷ 2 = 80 725 733 232 109 686 + 1;
- 80 725 733 232 109 686 ÷ 2 = 40 362 866 616 054 843 + 0;
- 40 362 866 616 054 843 ÷ 2 = 20 181 433 308 027 421 + 1;
- 20 181 433 308 027 421 ÷ 2 = 10 090 716 654 013 710 + 1;
- 10 090 716 654 013 710 ÷ 2 = 5 045 358 327 006 855 + 0;
- 5 045 358 327 006 855 ÷ 2 = 2 522 679 163 503 427 + 1;
- 2 522 679 163 503 427 ÷ 2 = 1 261 339 581 751 713 + 1;
- 1 261 339 581 751 713 ÷ 2 = 630 669 790 875 856 + 1;
- 630 669 790 875 856 ÷ 2 = 315 334 895 437 928 + 0;
- 315 334 895 437 928 ÷ 2 = 157 667 447 718 964 + 0;
- 157 667 447 718 964 ÷ 2 = 78 833 723 859 482 + 0;
- 78 833 723 859 482 ÷ 2 = 39 416 861 929 741 + 0;
- 39 416 861 929 741 ÷ 2 = 19 708 430 964 870 + 1;
- 19 708 430 964 870 ÷ 2 = 9 854 215 482 435 + 0;
- 9 854 215 482 435 ÷ 2 = 4 927 107 741 217 + 1;
- 4 927 107 741 217 ÷ 2 = 2 463 553 870 608 + 1;
- 2 463 553 870 608 ÷ 2 = 1 231 776 935 304 + 0;
- 1 231 776 935 304 ÷ 2 = 615 888 467 652 + 0;
- 615 888 467 652 ÷ 2 = 307 944 233 826 + 0;
- 307 944 233 826 ÷ 2 = 153 972 116 913 + 0;
- 153 972 116 913 ÷ 2 = 76 986 058 456 + 1;
- 76 986 058 456 ÷ 2 = 38 493 029 228 + 0;
- 38 493 029 228 ÷ 2 = 19 246 514 614 + 0;
- 19 246 514 614 ÷ 2 = 9 623 257 307 + 0;
- 9 623 257 307 ÷ 2 = 4 811 628 653 + 1;
- 4 811 628 653 ÷ 2 = 2 405 814 326 + 1;
- 2 405 814 326 ÷ 2 = 1 202 907 163 + 0;
- 1 202 907 163 ÷ 2 = 601 453 581 + 1;
- 601 453 581 ÷ 2 = 300 726 790 + 1;
- 300 726 790 ÷ 2 = 150 363 395 + 0;
- 150 363 395 ÷ 2 = 75 181 697 + 1;
- 75 181 697 ÷ 2 = 37 590 848 + 1;
- 37 590 848 ÷ 2 = 18 795 424 + 0;
- 18 795 424 ÷ 2 = 9 397 712 + 0;
- 9 397 712 ÷ 2 = 4 698 856 + 0;
- 4 698 856 ÷ 2 = 2 349 428 + 0;
- 2 349 428 ÷ 2 = 1 174 714 + 0;
- 1 174 714 ÷ 2 = 587 357 + 0;
- 587 357 ÷ 2 = 293 678 + 1;
- 293 678 ÷ 2 = 146 839 + 0;
- 146 839 ÷ 2 = 73 419 + 1;
- 73 419 ÷ 2 = 36 709 + 1;
- 36 709 ÷ 2 = 18 354 + 1;
- 18 354 ÷ 2 = 9 177 + 0;
- 9 177 ÷ 2 = 4 588 + 1;
- 4 588 ÷ 2 = 2 294 + 0;
- 2 294 ÷ 2 = 1 147 + 0;
- 1 147 ÷ 2 = 573 + 1;
- 573 ÷ 2 = 286 + 1;
- 286 ÷ 2 = 143 + 0;
- 143 ÷ 2 = 71 + 1;
- 71 ÷ 2 = 35 + 1;
- 35 ÷ 2 = 17 + 1;
- 17 ÷ 2 = 8 + 1;
- 8 ÷ 2 = 4 + 0;
- 4 ÷ 2 = 2 + 0;
- 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.
645 805 865 856 877 492(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
645 805 865 856 877 492 (base 10) = 1000 1111 0110 0101 1101 0000 0011 0110 1100 0100 0011 0100 0011 1011 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.