What are the required steps to convert base 10 decimal system
number 1 110 101 110 110 498 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 110 101 110 110 498 ÷ 2 = 555 050 555 055 249 + 0;
- 555 050 555 055 249 ÷ 2 = 277 525 277 527 624 + 1;
- 277 525 277 527 624 ÷ 2 = 138 762 638 763 812 + 0;
- 138 762 638 763 812 ÷ 2 = 69 381 319 381 906 + 0;
- 69 381 319 381 906 ÷ 2 = 34 690 659 690 953 + 0;
- 34 690 659 690 953 ÷ 2 = 17 345 329 845 476 + 1;
- 17 345 329 845 476 ÷ 2 = 8 672 664 922 738 + 0;
- 8 672 664 922 738 ÷ 2 = 4 336 332 461 369 + 0;
- 4 336 332 461 369 ÷ 2 = 2 168 166 230 684 + 1;
- 2 168 166 230 684 ÷ 2 = 1 084 083 115 342 + 0;
- 1 084 083 115 342 ÷ 2 = 542 041 557 671 + 0;
- 542 041 557 671 ÷ 2 = 271 020 778 835 + 1;
- 271 020 778 835 ÷ 2 = 135 510 389 417 + 1;
- 135 510 389 417 ÷ 2 = 67 755 194 708 + 1;
- 67 755 194 708 ÷ 2 = 33 877 597 354 + 0;
- 33 877 597 354 ÷ 2 = 16 938 798 677 + 0;
- 16 938 798 677 ÷ 2 = 8 469 399 338 + 1;
- 8 469 399 338 ÷ 2 = 4 234 699 669 + 0;
- 4 234 699 669 ÷ 2 = 2 117 349 834 + 1;
- 2 117 349 834 ÷ 2 = 1 058 674 917 + 0;
- 1 058 674 917 ÷ 2 = 529 337 458 + 1;
- 529 337 458 ÷ 2 = 264 668 729 + 0;
- 264 668 729 ÷ 2 = 132 334 364 + 1;
- 132 334 364 ÷ 2 = 66 167 182 + 0;
- 66 167 182 ÷ 2 = 33 083 591 + 0;
- 33 083 591 ÷ 2 = 16 541 795 + 1;
- 16 541 795 ÷ 2 = 8 270 897 + 1;
- 8 270 897 ÷ 2 = 4 135 448 + 1;
- 4 135 448 ÷ 2 = 2 067 724 + 0;
- 2 067 724 ÷ 2 = 1 033 862 + 0;
- 1 033 862 ÷ 2 = 516 931 + 0;
- 516 931 ÷ 2 = 258 465 + 1;
- 258 465 ÷ 2 = 129 232 + 1;
- 129 232 ÷ 2 = 64 616 + 0;
- 64 616 ÷ 2 = 32 308 + 0;
- 32 308 ÷ 2 = 16 154 + 0;
- 16 154 ÷ 2 = 8 077 + 0;
- 8 077 ÷ 2 = 4 038 + 1;
- 4 038 ÷ 2 = 2 019 + 0;
- 2 019 ÷ 2 = 1 009 + 1;
- 1 009 ÷ 2 = 504 + 1;
- 504 ÷ 2 = 252 + 0;
- 252 ÷ 2 = 126 + 0;
- 126 ÷ 2 = 63 + 0;
- 63 ÷ 2 = 31 + 1;
- 31 ÷ 2 = 15 + 1;
- 15 ÷ 2 = 7 + 1;
- 7 ÷ 2 = 3 + 1;
- 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.
1 110 101 110 110 498(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 110 101 110 110 498 (base 10) = 11 1111 0001 1010 0001 1000 1110 0101 0101 0011 1001 0010 0010 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.