What are the required steps to convert base 10 decimal system
number 524 545 465 464 165 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;
- 524 545 465 464 165 ÷ 2 = 262 272 732 732 082 + 1;
- 262 272 732 732 082 ÷ 2 = 131 136 366 366 041 + 0;
- 131 136 366 366 041 ÷ 2 = 65 568 183 183 020 + 1;
- 65 568 183 183 020 ÷ 2 = 32 784 091 591 510 + 0;
- 32 784 091 591 510 ÷ 2 = 16 392 045 795 755 + 0;
- 16 392 045 795 755 ÷ 2 = 8 196 022 897 877 + 1;
- 8 196 022 897 877 ÷ 2 = 4 098 011 448 938 + 1;
- 4 098 011 448 938 ÷ 2 = 2 049 005 724 469 + 0;
- 2 049 005 724 469 ÷ 2 = 1 024 502 862 234 + 1;
- 1 024 502 862 234 ÷ 2 = 512 251 431 117 + 0;
- 512 251 431 117 ÷ 2 = 256 125 715 558 + 1;
- 256 125 715 558 ÷ 2 = 128 062 857 779 + 0;
- 128 062 857 779 ÷ 2 = 64 031 428 889 + 1;
- 64 031 428 889 ÷ 2 = 32 015 714 444 + 1;
- 32 015 714 444 ÷ 2 = 16 007 857 222 + 0;
- 16 007 857 222 ÷ 2 = 8 003 928 611 + 0;
- 8 003 928 611 ÷ 2 = 4 001 964 305 + 1;
- 4 001 964 305 ÷ 2 = 2 000 982 152 + 1;
- 2 000 982 152 ÷ 2 = 1 000 491 076 + 0;
- 1 000 491 076 ÷ 2 = 500 245 538 + 0;
- 500 245 538 ÷ 2 = 250 122 769 + 0;
- 250 122 769 ÷ 2 = 125 061 384 + 1;
- 125 061 384 ÷ 2 = 62 530 692 + 0;
- 62 530 692 ÷ 2 = 31 265 346 + 0;
- 31 265 346 ÷ 2 = 15 632 673 + 0;
- 15 632 673 ÷ 2 = 7 816 336 + 1;
- 7 816 336 ÷ 2 = 3 908 168 + 0;
- 3 908 168 ÷ 2 = 1 954 084 + 0;
- 1 954 084 ÷ 2 = 977 042 + 0;
- 977 042 ÷ 2 = 488 521 + 0;
- 488 521 ÷ 2 = 244 260 + 1;
- 244 260 ÷ 2 = 122 130 + 0;
- 122 130 ÷ 2 = 61 065 + 0;
- 61 065 ÷ 2 = 30 532 + 1;
- 30 532 ÷ 2 = 15 266 + 0;
- 15 266 ÷ 2 = 7 633 + 0;
- 7 633 ÷ 2 = 3 816 + 1;
- 3 816 ÷ 2 = 1 908 + 0;
- 1 908 ÷ 2 = 954 + 0;
- 954 ÷ 2 = 477 + 0;
- 477 ÷ 2 = 238 + 1;
- 238 ÷ 2 = 119 + 0;
- 119 ÷ 2 = 59 + 1;
- 59 ÷ 2 = 29 + 1;
- 29 ÷ 2 = 14 + 1;
- 14 ÷ 2 = 7 + 0;
- 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.
524 545 465 464 165(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
524 545 465 464 165 (base 10) = 1 1101 1101 0001 0010 0100 0010 0010 0011 0011 0101 0110 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.