What are the required steps to convert base 10 decimal system
number 1 199 201 709 003 600 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;
- 1 199 201 709 003 600 ÷ 2 = 599 600 854 501 800 + 0;
- 599 600 854 501 800 ÷ 2 = 299 800 427 250 900 + 0;
- 299 800 427 250 900 ÷ 2 = 149 900 213 625 450 + 0;
- 149 900 213 625 450 ÷ 2 = 74 950 106 812 725 + 0;
- 74 950 106 812 725 ÷ 2 = 37 475 053 406 362 + 1;
- 37 475 053 406 362 ÷ 2 = 18 737 526 703 181 + 0;
- 18 737 526 703 181 ÷ 2 = 9 368 763 351 590 + 1;
- 9 368 763 351 590 ÷ 2 = 4 684 381 675 795 + 0;
- 4 684 381 675 795 ÷ 2 = 2 342 190 837 897 + 1;
- 2 342 190 837 897 ÷ 2 = 1 171 095 418 948 + 1;
- 1 171 095 418 948 ÷ 2 = 585 547 709 474 + 0;
- 585 547 709 474 ÷ 2 = 292 773 854 737 + 0;
- 292 773 854 737 ÷ 2 = 146 386 927 368 + 1;
- 146 386 927 368 ÷ 2 = 73 193 463 684 + 0;
- 73 193 463 684 ÷ 2 = 36 596 731 842 + 0;
- 36 596 731 842 ÷ 2 = 18 298 365 921 + 0;
- 18 298 365 921 ÷ 2 = 9 149 182 960 + 1;
- 9 149 182 960 ÷ 2 = 4 574 591 480 + 0;
- 4 574 591 480 ÷ 2 = 2 287 295 740 + 0;
- 2 287 295 740 ÷ 2 = 1 143 647 870 + 0;
- 1 143 647 870 ÷ 2 = 571 823 935 + 0;
- 571 823 935 ÷ 2 = 285 911 967 + 1;
- 285 911 967 ÷ 2 = 142 955 983 + 1;
- 142 955 983 ÷ 2 = 71 477 991 + 1;
- 71 477 991 ÷ 2 = 35 738 995 + 1;
- 35 738 995 ÷ 2 = 17 869 497 + 1;
- 17 869 497 ÷ 2 = 8 934 748 + 1;
- 8 934 748 ÷ 2 = 4 467 374 + 0;
- 4 467 374 ÷ 2 = 2 233 687 + 0;
- 2 233 687 ÷ 2 = 1 116 843 + 1;
- 1 116 843 ÷ 2 = 558 421 + 1;
- 558 421 ÷ 2 = 279 210 + 1;
- 279 210 ÷ 2 = 139 605 + 0;
- 139 605 ÷ 2 = 69 802 + 1;
- 69 802 ÷ 2 = 34 901 + 0;
- 34 901 ÷ 2 = 17 450 + 1;
- 17 450 ÷ 2 = 8 725 + 0;
- 8 725 ÷ 2 = 4 362 + 1;
- 4 362 ÷ 2 = 2 181 + 0;
- 2 181 ÷ 2 = 1 090 + 1;
- 1 090 ÷ 2 = 545 + 0;
- 545 ÷ 2 = 272 + 1;
- 272 ÷ 2 = 136 + 0;
- 136 ÷ 2 = 68 + 0;
- 68 ÷ 2 = 34 + 0;
- 34 ÷ 2 = 17 + 0;
- 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.
1 199 201 709 003 600(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 199 201 709 003 600 (base 10) = 100 0100 0010 1010 1010 1110 0111 1110 0001 0001 0011 0101 0000 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.