What are the required steps to convert base 10 decimal system
number 20 000 000 000 172 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;
- 20 000 000 000 172 ÷ 2 = 10 000 000 000 086 + 0;
- 10 000 000 000 086 ÷ 2 = 5 000 000 000 043 + 0;
- 5 000 000 000 043 ÷ 2 = 2 500 000 000 021 + 1;
- 2 500 000 000 021 ÷ 2 = 1 250 000 000 010 + 1;
- 1 250 000 000 010 ÷ 2 = 625 000 000 005 + 0;
- 625 000 000 005 ÷ 2 = 312 500 000 002 + 1;
- 312 500 000 002 ÷ 2 = 156 250 000 001 + 0;
- 156 250 000 001 ÷ 2 = 78 125 000 000 + 1;
- 78 125 000 000 ÷ 2 = 39 062 500 000 + 0;
- 39 062 500 000 ÷ 2 = 19 531 250 000 + 0;
- 19 531 250 000 ÷ 2 = 9 765 625 000 + 0;
- 9 765 625 000 ÷ 2 = 4 882 812 500 + 0;
- 4 882 812 500 ÷ 2 = 2 441 406 250 + 0;
- 2 441 406 250 ÷ 2 = 1 220 703 125 + 0;
- 1 220 703 125 ÷ 2 = 610 351 562 + 1;
- 610 351 562 ÷ 2 = 305 175 781 + 0;
- 305 175 781 ÷ 2 = 152 587 890 + 1;
- 152 587 890 ÷ 2 = 76 293 945 + 0;
- 76 293 945 ÷ 2 = 38 146 972 + 1;
- 38 146 972 ÷ 2 = 19 073 486 + 0;
- 19 073 486 ÷ 2 = 9 536 743 + 0;
- 9 536 743 ÷ 2 = 4 768 371 + 1;
- 4 768 371 ÷ 2 = 2 384 185 + 1;
- 2 384 185 ÷ 2 = 1 192 092 + 1;
- 1 192 092 ÷ 2 = 596 046 + 0;
- 596 046 ÷ 2 = 298 023 + 0;
- 298 023 ÷ 2 = 149 011 + 1;
- 149 011 ÷ 2 = 74 505 + 1;
- 74 505 ÷ 2 = 37 252 + 1;
- 37 252 ÷ 2 = 18 626 + 0;
- 18 626 ÷ 2 = 9 313 + 0;
- 9 313 ÷ 2 = 4 656 + 1;
- 4 656 ÷ 2 = 2 328 + 0;
- 2 328 ÷ 2 = 1 164 + 0;
- 1 164 ÷ 2 = 582 + 0;
- 582 ÷ 2 = 291 + 0;
- 291 ÷ 2 = 145 + 1;
- 145 ÷ 2 = 72 + 1;
- 72 ÷ 2 = 36 + 0;
- 36 ÷ 2 = 18 + 0;
- 18 ÷ 2 = 9 + 0;
- 9 ÷ 2 = 4 + 1;
- 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.
20 000 000 000 172(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
20 000 000 000 172 (base 10) = 1 0010 0011 0000 1001 1100 1110 0101 0100 0000 1010 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.