What are the required steps to convert base 10 decimal system
number 3 689 656 785 894 204 276 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;
- 3 689 656 785 894 204 276 ÷ 2 = 1 844 828 392 947 102 138 + 0;
- 1 844 828 392 947 102 138 ÷ 2 = 922 414 196 473 551 069 + 0;
- 922 414 196 473 551 069 ÷ 2 = 461 207 098 236 775 534 + 1;
- 461 207 098 236 775 534 ÷ 2 = 230 603 549 118 387 767 + 0;
- 230 603 549 118 387 767 ÷ 2 = 115 301 774 559 193 883 + 1;
- 115 301 774 559 193 883 ÷ 2 = 57 650 887 279 596 941 + 1;
- 57 650 887 279 596 941 ÷ 2 = 28 825 443 639 798 470 + 1;
- 28 825 443 639 798 470 ÷ 2 = 14 412 721 819 899 235 + 0;
- 14 412 721 819 899 235 ÷ 2 = 7 206 360 909 949 617 + 1;
- 7 206 360 909 949 617 ÷ 2 = 3 603 180 454 974 808 + 1;
- 3 603 180 454 974 808 ÷ 2 = 1 801 590 227 487 404 + 0;
- 1 801 590 227 487 404 ÷ 2 = 900 795 113 743 702 + 0;
- 900 795 113 743 702 ÷ 2 = 450 397 556 871 851 + 0;
- 450 397 556 871 851 ÷ 2 = 225 198 778 435 925 + 1;
- 225 198 778 435 925 ÷ 2 = 112 599 389 217 962 + 1;
- 112 599 389 217 962 ÷ 2 = 56 299 694 608 981 + 0;
- 56 299 694 608 981 ÷ 2 = 28 149 847 304 490 + 1;
- 28 149 847 304 490 ÷ 2 = 14 074 923 652 245 + 0;
- 14 074 923 652 245 ÷ 2 = 7 037 461 826 122 + 1;
- 7 037 461 826 122 ÷ 2 = 3 518 730 913 061 + 0;
- 3 518 730 913 061 ÷ 2 = 1 759 365 456 530 + 1;
- 1 759 365 456 530 ÷ 2 = 879 682 728 265 + 0;
- 879 682 728 265 ÷ 2 = 439 841 364 132 + 1;
- 439 841 364 132 ÷ 2 = 219 920 682 066 + 0;
- 219 920 682 066 ÷ 2 = 109 960 341 033 + 0;
- 109 960 341 033 ÷ 2 = 54 980 170 516 + 1;
- 54 980 170 516 ÷ 2 = 27 490 085 258 + 0;
- 27 490 085 258 ÷ 2 = 13 745 042 629 + 0;
- 13 745 042 629 ÷ 2 = 6 872 521 314 + 1;
- 6 872 521 314 ÷ 2 = 3 436 260 657 + 0;
- 3 436 260 657 ÷ 2 = 1 718 130 328 + 1;
- 1 718 130 328 ÷ 2 = 859 065 164 + 0;
- 859 065 164 ÷ 2 = 429 532 582 + 0;
- 429 532 582 ÷ 2 = 214 766 291 + 0;
- 214 766 291 ÷ 2 = 107 383 145 + 1;
- 107 383 145 ÷ 2 = 53 691 572 + 1;
- 53 691 572 ÷ 2 = 26 845 786 + 0;
- 26 845 786 ÷ 2 = 13 422 893 + 0;
- 13 422 893 ÷ 2 = 6 711 446 + 1;
- 6 711 446 ÷ 2 = 3 355 723 + 0;
- 3 355 723 ÷ 2 = 1 677 861 + 1;
- 1 677 861 ÷ 2 = 838 930 + 1;
- 838 930 ÷ 2 = 419 465 + 0;
- 419 465 ÷ 2 = 209 732 + 1;
- 209 732 ÷ 2 = 104 866 + 0;
- 104 866 ÷ 2 = 52 433 + 0;
- 52 433 ÷ 2 = 26 216 + 1;
- 26 216 ÷ 2 = 13 108 + 0;
- 13 108 ÷ 2 = 6 554 + 0;
- 6 554 ÷ 2 = 3 277 + 0;
- 3 277 ÷ 2 = 1 638 + 1;
- 1 638 ÷ 2 = 819 + 0;
- 819 ÷ 2 = 409 + 1;
- 409 ÷ 2 = 204 + 1;
- 204 ÷ 2 = 102 + 0;
- 102 ÷ 2 = 51 + 0;
- 51 ÷ 2 = 25 + 1;
- 25 ÷ 2 = 12 + 1;
- 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.
3 689 656 785 894 204 276(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
3 689 656 785 894 204 276 (base 10) = 11 0011 0011 0100 0100 1011 0100 1100 0101 0010 0101 0101 0110 0011 0111 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.