What are the required steps to convert base 10 decimal system
number 1 101 101 011 044 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 101 101 011 044 ÷ 2 = 550 550 505 522 + 0;
- 550 550 505 522 ÷ 2 = 275 275 252 761 + 0;
- 275 275 252 761 ÷ 2 = 137 637 626 380 + 1;
- 137 637 626 380 ÷ 2 = 68 818 813 190 + 0;
- 68 818 813 190 ÷ 2 = 34 409 406 595 + 0;
- 34 409 406 595 ÷ 2 = 17 204 703 297 + 1;
- 17 204 703 297 ÷ 2 = 8 602 351 648 + 1;
- 8 602 351 648 ÷ 2 = 4 301 175 824 + 0;
- 4 301 175 824 ÷ 2 = 2 150 587 912 + 0;
- 2 150 587 912 ÷ 2 = 1 075 293 956 + 0;
- 1 075 293 956 ÷ 2 = 537 646 978 + 0;
- 537 646 978 ÷ 2 = 268 823 489 + 0;
- 268 823 489 ÷ 2 = 134 411 744 + 1;
- 134 411 744 ÷ 2 = 67 205 872 + 0;
- 67 205 872 ÷ 2 = 33 602 936 + 0;
- 33 602 936 ÷ 2 = 16 801 468 + 0;
- 16 801 468 ÷ 2 = 8 400 734 + 0;
- 8 400 734 ÷ 2 = 4 200 367 + 0;
- 4 200 367 ÷ 2 = 2 100 183 + 1;
- 2 100 183 ÷ 2 = 1 050 091 + 1;
- 1 050 091 ÷ 2 = 525 045 + 1;
- 525 045 ÷ 2 = 262 522 + 1;
- 262 522 ÷ 2 = 131 261 + 0;
- 131 261 ÷ 2 = 65 630 + 1;
- 65 630 ÷ 2 = 32 815 + 0;
- 32 815 ÷ 2 = 16 407 + 1;
- 16 407 ÷ 2 = 8 203 + 1;
- 8 203 ÷ 2 = 4 101 + 1;
- 4 101 ÷ 2 = 2 050 + 1;
- 2 050 ÷ 2 = 1 025 + 0;
- 1 025 ÷ 2 = 512 + 1;
- 512 ÷ 2 = 256 + 0;
- 256 ÷ 2 = 128 + 0;
- 128 ÷ 2 = 64 + 0;
- 64 ÷ 2 = 32 + 0;
- 32 ÷ 2 = 16 + 0;
- 16 ÷ 2 = 8 + 0;
- 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 101 101 011 044(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
1 101 101 011 044 (base 10) = 1 0000 0000 0101 1110 1011 1100 0001 0000 0110 0100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.