What are the required steps to convert base 10 decimal system
number 845 550 830 038 810 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;
- 845 550 830 038 810 647 ÷ 2 = 422 775 415 019 405 323 + 1;
- 422 775 415 019 405 323 ÷ 2 = 211 387 707 509 702 661 + 1;
- 211 387 707 509 702 661 ÷ 2 = 105 693 853 754 851 330 + 1;
- 105 693 853 754 851 330 ÷ 2 = 52 846 926 877 425 665 + 0;
- 52 846 926 877 425 665 ÷ 2 = 26 423 463 438 712 832 + 1;
- 26 423 463 438 712 832 ÷ 2 = 13 211 731 719 356 416 + 0;
- 13 211 731 719 356 416 ÷ 2 = 6 605 865 859 678 208 + 0;
- 6 605 865 859 678 208 ÷ 2 = 3 302 932 929 839 104 + 0;
- 3 302 932 929 839 104 ÷ 2 = 1 651 466 464 919 552 + 0;
- 1 651 466 464 919 552 ÷ 2 = 825 733 232 459 776 + 0;
- 825 733 232 459 776 ÷ 2 = 412 866 616 229 888 + 0;
- 412 866 616 229 888 ÷ 2 = 206 433 308 114 944 + 0;
- 206 433 308 114 944 ÷ 2 = 103 216 654 057 472 + 0;
- 103 216 654 057 472 ÷ 2 = 51 608 327 028 736 + 0;
- 51 608 327 028 736 ÷ 2 = 25 804 163 514 368 + 0;
- 25 804 163 514 368 ÷ 2 = 12 902 081 757 184 + 0;
- 12 902 081 757 184 ÷ 2 = 6 451 040 878 592 + 0;
- 6 451 040 878 592 ÷ 2 = 3 225 520 439 296 + 0;
- 3 225 520 439 296 ÷ 2 = 1 612 760 219 648 + 0;
- 1 612 760 219 648 ÷ 2 = 806 380 109 824 + 0;
- 806 380 109 824 ÷ 2 = 403 190 054 912 + 0;
- 403 190 054 912 ÷ 2 = 201 595 027 456 + 0;
- 201 595 027 456 ÷ 2 = 100 797 513 728 + 0;
- 100 797 513 728 ÷ 2 = 50 398 756 864 + 0;
- 50 398 756 864 ÷ 2 = 25 199 378 432 + 0;
- 25 199 378 432 ÷ 2 = 12 599 689 216 + 0;
- 12 599 689 216 ÷ 2 = 6 299 844 608 + 0;
- 6 299 844 608 ÷ 2 = 3 149 922 304 + 0;
- 3 149 922 304 ÷ 2 = 1 574 961 152 + 0;
- 1 574 961 152 ÷ 2 = 787 480 576 + 0;
- 787 480 576 ÷ 2 = 393 740 288 + 0;
- 393 740 288 ÷ 2 = 196 870 144 + 0;
- 196 870 144 ÷ 2 = 98 435 072 + 0;
- 98 435 072 ÷ 2 = 49 217 536 + 0;
- 49 217 536 ÷ 2 = 24 608 768 + 0;
- 24 608 768 ÷ 2 = 12 304 384 + 0;
- 12 304 384 ÷ 2 = 6 152 192 + 0;
- 6 152 192 ÷ 2 = 3 076 096 + 0;
- 3 076 096 ÷ 2 = 1 538 048 + 0;
- 1 538 048 ÷ 2 = 769 024 + 0;
- 769 024 ÷ 2 = 384 512 + 0;
- 384 512 ÷ 2 = 192 256 + 0;
- 192 256 ÷ 2 = 96 128 + 0;
- 96 128 ÷ 2 = 48 064 + 0;
- 48 064 ÷ 2 = 24 032 + 0;
- 24 032 ÷ 2 = 12 016 + 0;
- 12 016 ÷ 2 = 6 008 + 0;
- 6 008 ÷ 2 = 3 004 + 0;
- 3 004 ÷ 2 = 1 502 + 0;
- 1 502 ÷ 2 = 751 + 0;
- 751 ÷ 2 = 375 + 1;
- 375 ÷ 2 = 187 + 1;
- 187 ÷ 2 = 93 + 1;
- 93 ÷ 2 = 46 + 1;
- 46 ÷ 2 = 23 + 0;
- 23 ÷ 2 = 11 + 1;
- 11 ÷ 2 = 5 + 1;
- 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.
845 550 830 038 810 647(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
845 550 830 038 810 647 (base 10) = 1011 1011 1100 0000 0000 0000 0000 0000 0000 0000 0000 0000 0000 0001 0111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.