August 15, 2009

Conversion from Decimal to Others

Decimal TO Binary

Comparison with descending powers of two and subtraction

  1. List the powers of two in a "base 2 table" from right to left. Start at 20, evaluating it as "1". Increment the exponent by one for each power. The list, to ten elements, would look like this: 512, 256, 128, 64, 32, 16, 8, 4, 2, 1
  2. For this example, let's convert the decimal number 15610 to binary. What is the greatest power of two that will fit into 156? Since 128 fits, write a 1 for the leftmost binary digit, and subtract 128 from your decimal number, 156. You now have 28.
  3. Move to the next lower power of two. Can 64 fit into 28? No, so write a 0 for the next binary digit to the right.
  4. Can 32 fit into 28? No, so write a 0.
  5. Can 16 fit into 28? Yes, so write a 1, and subtract 16 from 28. You now have 12.
  6. Can 8 fit into 12? Yes, so write a 1, and subtract 8 from 12. You now have 4.
  7. Can 4 (power of two) fit into 4 (working decimal)? Yes, so write a 1, and subtract 4 from 4. You have 0.
  8. Can 2 fit into 0? No, so write a 0.
  9. Can 1 fit into 0? No, so write a 0.
  10. Since there are no more powers of two in the list, you are done. You should have 10011100. This is the binary equivalent of the decimal number 156. Or, written with base subscripts: 15610 = 100111002
Here is the example of this method written on a piece of paper. The steps are labeled "A" through "L".

Repetition of this method will result in memorization of the powers of two, which will allow you to skip step 1.


Short division by two with remainder

This method is much easier to understand when visualized on paper. It relies only on division by two.

  1. For this example, let's convert the decimal number 15610 to binary. Write the decimal number as the dividend inside an upside-down "long division" symbol. Write the base of the destination system (in our case, "2" for binary) as the divisor outside the curve of the division symbol.

    2)156

  2. Write the integer answer (quotient) under the long division symbol, and write the remainder (0 or 1) to the right of the dividend.

    2)156 0
    78

  3. Continue downwards, dividing each new quotient by two and writing the remainders to the right of each dividend. Stop when the quotient is 1.

    2)156 0
    2)78 0
    2)39 1
    2)19 1
    2)9 1
    2)4 0
    2)2 0
    2)1 1
    2)0 0

  4. Starting with the bottom 1, read the sequence of 1's and 0's upwards to the top. You should have 10011100. This is the binary equivalent of the decimal number 156. Or, written with base subscripts: 15610 = 100111002
Simple Table

Example: $41.6875_{10} = (\;\;?\;\;)_2$

\begin{<span class=

* $ 41-32=9; \;\;9-8=1; \;\;0.6875-0.5=0.1875; \;\; 0.1875-0.125=0.0625 $

So, we have

\begin{displaymath}41.6875_{10}=0101001.1011_2 \end{<span class=displaymath}" border="0" height="31" width="386">

Conversion for FRACTIONAL PART

41.6875.gif


\begin{<span class=

0 comments:

Post a Comment

DOOR BELL FOR DEAF CLICK HERE

Electronics is the study and use of electrical that operate by controlling the flow of electrons or other electrically charged particles in devices such as thermionic valves. and semiconductors. The pure study of such devices is considered as a branch of physics, while the design and construction electronic circuits to solve practical problems is called electronic engineering.

Popular article