What are the required steps to convert base 10 decimal system
number 355 687 428 100 566 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;
- 355 687 428 100 566 ÷ 2 = 177 843 714 050 283 + 0;
- 177 843 714 050 283 ÷ 2 = 88 921 857 025 141 + 1;
- 88 921 857 025 141 ÷ 2 = 44 460 928 512 570 + 1;
- 44 460 928 512 570 ÷ 2 = 22 230 464 256 285 + 0;
- 22 230 464 256 285 ÷ 2 = 11 115 232 128 142 + 1;
- 11 115 232 128 142 ÷ 2 = 5 557 616 064 071 + 0;
- 5 557 616 064 071 ÷ 2 = 2 778 808 032 035 + 1;
- 2 778 808 032 035 ÷ 2 = 1 389 404 016 017 + 1;
- 1 389 404 016 017 ÷ 2 = 694 702 008 008 + 1;
- 694 702 008 008 ÷ 2 = 347 351 004 004 + 0;
- 347 351 004 004 ÷ 2 = 173 675 502 002 + 0;
- 173 675 502 002 ÷ 2 = 86 837 751 001 + 0;
- 86 837 751 001 ÷ 2 = 43 418 875 500 + 1;
- 43 418 875 500 ÷ 2 = 21 709 437 750 + 0;
- 21 709 437 750 ÷ 2 = 10 854 718 875 + 0;
- 10 854 718 875 ÷ 2 = 5 427 359 437 + 1;
- 5 427 359 437 ÷ 2 = 2 713 679 718 + 1;
- 2 713 679 718 ÷ 2 = 1 356 839 859 + 0;
- 1 356 839 859 ÷ 2 = 678 419 929 + 1;
- 678 419 929 ÷ 2 = 339 209 964 + 1;
- 339 209 964 ÷ 2 = 169 604 982 + 0;
- 169 604 982 ÷ 2 = 84 802 491 + 0;
- 84 802 491 ÷ 2 = 42 401 245 + 1;
- 42 401 245 ÷ 2 = 21 200 622 + 1;
- 21 200 622 ÷ 2 = 10 600 311 + 0;
- 10 600 311 ÷ 2 = 5 300 155 + 1;
- 5 300 155 ÷ 2 = 2 650 077 + 1;
- 2 650 077 ÷ 2 = 1 325 038 + 1;
- 1 325 038 ÷ 2 = 662 519 + 0;
- 662 519 ÷ 2 = 331 259 + 1;
- 331 259 ÷ 2 = 165 629 + 1;
- 165 629 ÷ 2 = 82 814 + 1;
- 82 814 ÷ 2 = 41 407 + 0;
- 41 407 ÷ 2 = 20 703 + 1;
- 20 703 ÷ 2 = 10 351 + 1;
- 10 351 ÷ 2 = 5 175 + 1;
- 5 175 ÷ 2 = 2 587 + 1;
- 2 587 ÷ 2 = 1 293 + 1;
- 1 293 ÷ 2 = 646 + 1;
- 646 ÷ 2 = 323 + 0;
- 323 ÷ 2 = 161 + 1;
- 161 ÷ 2 = 80 + 1;
- 80 ÷ 2 = 40 + 0;
- 40 ÷ 2 = 20 + 0;
- 20 ÷ 2 = 10 + 0;
- 10 ÷ 2 = 5 + 0;
- 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.
355 687 428 100 566(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
355 687 428 100 566 (base 10) = 1 0100 0011 0111 1110 1110 1110 1100 1101 1001 0001 1101 0110 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.