What are the required steps to convert base 10 decimal system
number 1 755 866 650 198 831 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 755 866 650 198 831 ÷ 2 = 877 933 325 099 415 + 1;
- 877 933 325 099 415 ÷ 2 = 438 966 662 549 707 + 1;
- 438 966 662 549 707 ÷ 2 = 219 483 331 274 853 + 1;
- 219 483 331 274 853 ÷ 2 = 109 741 665 637 426 + 1;
- 109 741 665 637 426 ÷ 2 = 54 870 832 818 713 + 0;
- 54 870 832 818 713 ÷ 2 = 27 435 416 409 356 + 1;
- 27 435 416 409 356 ÷ 2 = 13 717 708 204 678 + 0;
- 13 717 708 204 678 ÷ 2 = 6 858 854 102 339 + 0;
- 6 858 854 102 339 ÷ 2 = 3 429 427 051 169 + 1;
- 3 429 427 051 169 ÷ 2 = 1 714 713 525 584 + 1;
- 1 714 713 525 584 ÷ 2 = 857 356 762 792 + 0;
- 857 356 762 792 ÷ 2 = 428 678 381 396 + 0;
- 428 678 381 396 ÷ 2 = 214 339 190 698 + 0;
- 214 339 190 698 ÷ 2 = 107 169 595 349 + 0;
- 107 169 595 349 ÷ 2 = 53 584 797 674 + 1;
- 53 584 797 674 ÷ 2 = 26 792 398 837 + 0;
- 26 792 398 837 ÷ 2 = 13 396 199 418 + 1;
- 13 396 199 418 ÷ 2 = 6 698 099 709 + 0;
- 6 698 099 709 ÷ 2 = 3 349 049 854 + 1;
- 3 349 049 854 ÷ 2 = 1 674 524 927 + 0;
- 1 674 524 927 ÷ 2 = 837 262 463 + 1;
- 837 262 463 ÷ 2 = 418 631 231 + 1;
- 418 631 231 ÷ 2 = 209 315 615 + 1;
- 209 315 615 ÷ 2 = 104 657 807 + 1;
- 104 657 807 ÷ 2 = 52 328 903 + 1;
- 52 328 903 ÷ 2 = 26 164 451 + 1;
- 26 164 451 ÷ 2 = 13 082 225 + 1;
- 13 082 225 ÷ 2 = 6 541 112 + 1;
- 6 541 112 ÷ 2 = 3 270 556 + 0;
- 3 270 556 ÷ 2 = 1 635 278 + 0;
- 1 635 278 ÷ 2 = 817 639 + 0;
- 817 639 ÷ 2 = 408 819 + 1;
- 408 819 ÷ 2 = 204 409 + 1;
- 204 409 ÷ 2 = 102 204 + 1;
- 102 204 ÷ 2 = 51 102 + 0;
- 51 102 ÷ 2 = 25 551 + 0;
- 25 551 ÷ 2 = 12 775 + 1;
- 12 775 ÷ 2 = 6 387 + 1;
- 6 387 ÷ 2 = 3 193 + 1;
- 3 193 ÷ 2 = 1 596 + 1;
- 1 596 ÷ 2 = 798 + 0;
- 798 ÷ 2 = 399 + 0;
- 399 ÷ 2 = 199 + 1;
- 199 ÷ 2 = 99 + 1;
- 99 ÷ 2 = 49 + 1;
- 49 ÷ 2 = 24 + 1;
- 24 ÷ 2 = 12 + 0;
- 12 ÷ 2 = 6 + 0;
- 6 ÷ 2 = 3 + 0;
- 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 755 866 650 198 831(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 755 866 650 198 831 (base 10) = 110 0011 1100 1111 0011 1000 1111 1111 0101 0100 0011 0010 1111 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.