What are the required steps to convert base 10 decimal system
number 1 233 121 012 111 209 698 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 233 121 012 111 209 698 ÷ 2 = 616 560 506 055 604 849 + 0;
- 616 560 506 055 604 849 ÷ 2 = 308 280 253 027 802 424 + 1;
- 308 280 253 027 802 424 ÷ 2 = 154 140 126 513 901 212 + 0;
- 154 140 126 513 901 212 ÷ 2 = 77 070 063 256 950 606 + 0;
- 77 070 063 256 950 606 ÷ 2 = 38 535 031 628 475 303 + 0;
- 38 535 031 628 475 303 ÷ 2 = 19 267 515 814 237 651 + 1;
- 19 267 515 814 237 651 ÷ 2 = 9 633 757 907 118 825 + 1;
- 9 633 757 907 118 825 ÷ 2 = 4 816 878 953 559 412 + 1;
- 4 816 878 953 559 412 ÷ 2 = 2 408 439 476 779 706 + 0;
- 2 408 439 476 779 706 ÷ 2 = 1 204 219 738 389 853 + 0;
- 1 204 219 738 389 853 ÷ 2 = 602 109 869 194 926 + 1;
- 602 109 869 194 926 ÷ 2 = 301 054 934 597 463 + 0;
- 301 054 934 597 463 ÷ 2 = 150 527 467 298 731 + 1;
- 150 527 467 298 731 ÷ 2 = 75 263 733 649 365 + 1;
- 75 263 733 649 365 ÷ 2 = 37 631 866 824 682 + 1;
- 37 631 866 824 682 ÷ 2 = 18 815 933 412 341 + 0;
- 18 815 933 412 341 ÷ 2 = 9 407 966 706 170 + 1;
- 9 407 966 706 170 ÷ 2 = 4 703 983 353 085 + 0;
- 4 703 983 353 085 ÷ 2 = 2 351 991 676 542 + 1;
- 2 351 991 676 542 ÷ 2 = 1 175 995 838 271 + 0;
- 1 175 995 838 271 ÷ 2 = 587 997 919 135 + 1;
- 587 997 919 135 ÷ 2 = 293 998 959 567 + 1;
- 293 998 959 567 ÷ 2 = 146 999 479 783 + 1;
- 146 999 479 783 ÷ 2 = 73 499 739 891 + 1;
- 73 499 739 891 ÷ 2 = 36 749 869 945 + 1;
- 36 749 869 945 ÷ 2 = 18 374 934 972 + 1;
- 18 374 934 972 ÷ 2 = 9 187 467 486 + 0;
- 9 187 467 486 ÷ 2 = 4 593 733 743 + 0;
- 4 593 733 743 ÷ 2 = 2 296 866 871 + 1;
- 2 296 866 871 ÷ 2 = 1 148 433 435 + 1;
- 1 148 433 435 ÷ 2 = 574 216 717 + 1;
- 574 216 717 ÷ 2 = 287 108 358 + 1;
- 287 108 358 ÷ 2 = 143 554 179 + 0;
- 143 554 179 ÷ 2 = 71 777 089 + 1;
- 71 777 089 ÷ 2 = 35 888 544 + 1;
- 35 888 544 ÷ 2 = 17 944 272 + 0;
- 17 944 272 ÷ 2 = 8 972 136 + 0;
- 8 972 136 ÷ 2 = 4 486 068 + 0;
- 4 486 068 ÷ 2 = 2 243 034 + 0;
- 2 243 034 ÷ 2 = 1 121 517 + 0;
- 1 121 517 ÷ 2 = 560 758 + 1;
- 560 758 ÷ 2 = 280 379 + 0;
- 280 379 ÷ 2 = 140 189 + 1;
- 140 189 ÷ 2 = 70 094 + 1;
- 70 094 ÷ 2 = 35 047 + 0;
- 35 047 ÷ 2 = 17 523 + 1;
- 17 523 ÷ 2 = 8 761 + 1;
- 8 761 ÷ 2 = 4 380 + 1;
- 4 380 ÷ 2 = 2 190 + 0;
- 2 190 ÷ 2 = 1 095 + 0;
- 1 095 ÷ 2 = 547 + 1;
- 547 ÷ 2 = 273 + 1;
- 273 ÷ 2 = 136 + 1;
- 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 233 121 012 111 209 698(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 233 121 012 111 209 698 (base 10) = 1 0001 0001 1100 1110 1101 0000 0110 1111 0011 1111 0101 0111 0100 1110 0010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.