What are the required steps to convert base 10 decimal system
number 79 999 999 999 884 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;
- 79 999 999 999 884 ÷ 2 = 39 999 999 999 942 + 0;
- 39 999 999 999 942 ÷ 2 = 19 999 999 999 971 + 0;
- 19 999 999 999 971 ÷ 2 = 9 999 999 999 985 + 1;
- 9 999 999 999 985 ÷ 2 = 4 999 999 999 992 + 1;
- 4 999 999 999 992 ÷ 2 = 2 499 999 999 996 + 0;
- 2 499 999 999 996 ÷ 2 = 1 249 999 999 998 + 0;
- 1 249 999 999 998 ÷ 2 = 624 999 999 999 + 0;
- 624 999 999 999 ÷ 2 = 312 499 999 999 + 1;
- 312 499 999 999 ÷ 2 = 156 249 999 999 + 1;
- 156 249 999 999 ÷ 2 = 78 124 999 999 + 1;
- 78 124 999 999 ÷ 2 = 39 062 499 999 + 1;
- 39 062 499 999 ÷ 2 = 19 531 249 999 + 1;
- 19 531 249 999 ÷ 2 = 9 765 624 999 + 1;
- 9 765 624 999 ÷ 2 = 4 882 812 499 + 1;
- 4 882 812 499 ÷ 2 = 2 441 406 249 + 1;
- 2 441 406 249 ÷ 2 = 1 220 703 124 + 1;
- 1 220 703 124 ÷ 2 = 610 351 562 + 0;
- 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.
79 999 999 999 884(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
79 999 999 999 884 (base 10) = 100 1000 1100 0010 0111 0011 1001 0100 1111 1111 1000 1100 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.