What are the required steps to convert base 10 decimal system
number 84 934 853 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;
- 84 934 853 ÷ 2 = 42 467 426 + 1;
- 42 467 426 ÷ 2 = 21 233 713 + 0;
- 21 233 713 ÷ 2 = 10 616 856 + 1;
- 10 616 856 ÷ 2 = 5 308 428 + 0;
- 5 308 428 ÷ 2 = 2 654 214 + 0;
- 2 654 214 ÷ 2 = 1 327 107 + 0;
- 1 327 107 ÷ 2 = 663 553 + 1;
- 663 553 ÷ 2 = 331 776 + 1;
- 331 776 ÷ 2 = 165 888 + 0;
- 165 888 ÷ 2 = 82 944 + 0;
- 82 944 ÷ 2 = 41 472 + 0;
- 41 472 ÷ 2 = 20 736 + 0;
- 20 736 ÷ 2 = 10 368 + 0;
- 10 368 ÷ 2 = 5 184 + 0;
- 5 184 ÷ 2 = 2 592 + 0;
- 2 592 ÷ 2 = 1 296 + 0;
- 1 296 ÷ 2 = 648 + 0;
- 648 ÷ 2 = 324 + 0;
- 324 ÷ 2 = 162 + 0;
- 162 ÷ 2 = 81 + 0;
- 81 ÷ 2 = 40 + 1;
- 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.
84 934 853(10) Base 10 decimal system number converted and written as a base 2 unsigned binary equivalent:
84 934 853 (base 10) = 101 0001 0000 0000 0000 1100 0101 (base 2)
Spaces were used to group digits: for binary, by 4, for decimal, by 3.