What are the required steps to convert base 10 decimal system
number 100 100 101 110 079 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 100 101 110 079 ÷ 2 = 50 050 050 555 039 + 1;
- 50 050 050 555 039 ÷ 2 = 25 025 025 277 519 + 1;
- 25 025 025 277 519 ÷ 2 = 12 512 512 638 759 + 1;
- 12 512 512 638 759 ÷ 2 = 6 256 256 319 379 + 1;
- 6 256 256 319 379 ÷ 2 = 3 128 128 159 689 + 1;
- 3 128 128 159 689 ÷ 2 = 1 564 064 079 844 + 1;
- 1 564 064 079 844 ÷ 2 = 782 032 039 922 + 0;
- 782 032 039 922 ÷ 2 = 391 016 019 961 + 0;
- 391 016 019 961 ÷ 2 = 195 508 009 980 + 1;
- 195 508 009 980 ÷ 2 = 97 754 004 990 + 0;
- 97 754 004 990 ÷ 2 = 48 877 002 495 + 0;
- 48 877 002 495 ÷ 2 = 24 438 501 247 + 1;
- 24 438 501 247 ÷ 2 = 12 219 250 623 + 1;
- 12 219 250 623 ÷ 2 = 6 109 625 311 + 1;
- 6 109 625 311 ÷ 2 = 3 054 812 655 + 1;
- 3 054 812 655 ÷ 2 = 1 527 406 327 + 1;
- 1 527 406 327 ÷ 2 = 763 703 163 + 1;
- 763 703 163 ÷ 2 = 381 851 581 + 1;
- 381 851 581 ÷ 2 = 190 925 790 + 1;
- 190 925 790 ÷ 2 = 95 462 895 + 0;
- 95 462 895 ÷ 2 = 47 731 447 + 1;
- 47 731 447 ÷ 2 = 23 865 723 + 1;
- 23 865 723 ÷ 2 = 11 932 861 + 1;
- 11 932 861 ÷ 2 = 5 966 430 + 1;
- 5 966 430 ÷ 2 = 2 983 215 + 0;
- 2 983 215 ÷ 2 = 1 491 607 + 1;
- 1 491 607 ÷ 2 = 745 803 + 1;
- 745 803 ÷ 2 = 372 901 + 1;
- 372 901 ÷ 2 = 186 450 + 1;
- 186 450 ÷ 2 = 93 225 + 0;
- 93 225 ÷ 2 = 46 612 + 1;
- 46 612 ÷ 2 = 23 306 + 0;
- 23 306 ÷ 2 = 11 653 + 0;
- 11 653 ÷ 2 = 5 826 + 1;
- 5 826 ÷ 2 = 2 913 + 0;
- 2 913 ÷ 2 = 1 456 + 1;
- 1 456 ÷ 2 = 728 + 0;
- 728 ÷ 2 = 364 + 0;
- 364 ÷ 2 = 182 + 0;
- 182 ÷ 2 = 91 + 0;
- 91 ÷ 2 = 45 + 1;
- 45 ÷ 2 = 22 + 1;
- 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 100 101 110 079(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
100 100 101 110 079 (base 10) = 101 1011 0000 1010 0101 1110 1111 0111 1111 1001 0011 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.