What are the required steps to convert base 10 decimal system
number 100 094 949 755 867 370 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;
- 100 094 949 755 867 370 ÷ 2 = 50 047 474 877 933 685 + 0;
- 50 047 474 877 933 685 ÷ 2 = 25 023 737 438 966 842 + 1;
- 25 023 737 438 966 842 ÷ 2 = 12 511 868 719 483 421 + 0;
- 12 511 868 719 483 421 ÷ 2 = 6 255 934 359 741 710 + 1;
- 6 255 934 359 741 710 ÷ 2 = 3 127 967 179 870 855 + 0;
- 3 127 967 179 870 855 ÷ 2 = 1 563 983 589 935 427 + 1;
- 1 563 983 589 935 427 ÷ 2 = 781 991 794 967 713 + 1;
- 781 991 794 967 713 ÷ 2 = 390 995 897 483 856 + 1;
- 390 995 897 483 856 ÷ 2 = 195 497 948 741 928 + 0;
- 195 497 948 741 928 ÷ 2 = 97 748 974 370 964 + 0;
- 97 748 974 370 964 ÷ 2 = 48 874 487 185 482 + 0;
- 48 874 487 185 482 ÷ 2 = 24 437 243 592 741 + 0;
- 24 437 243 592 741 ÷ 2 = 12 218 621 796 370 + 1;
- 12 218 621 796 370 ÷ 2 = 6 109 310 898 185 + 0;
- 6 109 310 898 185 ÷ 2 = 3 054 655 449 092 + 1;
- 3 054 655 449 092 ÷ 2 = 1 527 327 724 546 + 0;
- 1 527 327 724 546 ÷ 2 = 763 663 862 273 + 0;
- 763 663 862 273 ÷ 2 = 381 831 931 136 + 1;
- 381 831 931 136 ÷ 2 = 190 915 965 568 + 0;
- 190 915 965 568 ÷ 2 = 95 457 982 784 + 0;
- 95 457 982 784 ÷ 2 = 47 728 991 392 + 0;
- 47 728 991 392 ÷ 2 = 23 864 495 696 + 0;
- 23 864 495 696 ÷ 2 = 11 932 247 848 + 0;
- 11 932 247 848 ÷ 2 = 5 966 123 924 + 0;
- 5 966 123 924 ÷ 2 = 2 983 061 962 + 0;
- 2 983 061 962 ÷ 2 = 1 491 530 981 + 0;
- 1 491 530 981 ÷ 2 = 745 765 490 + 1;
- 745 765 490 ÷ 2 = 372 882 745 + 0;
- 372 882 745 ÷ 2 = 186 441 372 + 1;
- 186 441 372 ÷ 2 = 93 220 686 + 0;
- 93 220 686 ÷ 2 = 46 610 343 + 0;
- 46 610 343 ÷ 2 = 23 305 171 + 1;
- 23 305 171 ÷ 2 = 11 652 585 + 1;
- 11 652 585 ÷ 2 = 5 826 292 + 1;
- 5 826 292 ÷ 2 = 2 913 146 + 0;
- 2 913 146 ÷ 2 = 1 456 573 + 0;
- 1 456 573 ÷ 2 = 728 286 + 1;
- 728 286 ÷ 2 = 364 143 + 0;
- 364 143 ÷ 2 = 182 071 + 1;
- 182 071 ÷ 2 = 91 035 + 1;
- 91 035 ÷ 2 = 45 517 + 1;
- 45 517 ÷ 2 = 22 758 + 1;
- 22 758 ÷ 2 = 11 379 + 0;
- 11 379 ÷ 2 = 5 689 + 1;
- 5 689 ÷ 2 = 2 844 + 1;
- 2 844 ÷ 2 = 1 422 + 0;
- 1 422 ÷ 2 = 711 + 0;
- 711 ÷ 2 = 355 + 1;
- 355 ÷ 2 = 177 + 1;
- 177 ÷ 2 = 88 + 1;
- 88 ÷ 2 = 44 + 0;
- 44 ÷ 2 = 22 + 0;
- 22 ÷ 2 = 11 + 0;
- 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.
100 094 949 755 867 370(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
100 094 949 755 867 370 (base 10) = 1 0110 0011 1001 1011 1101 0011 1001 0100 0000 0010 0101 0000 1110 1010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.