1

For the difference equation below:

$y(k)=1/2{x(k)+x(k-1)}$

How i can find he z-domain transfer function?

Thanks.

pep
  • 15
  • 2

1 Answers1

3

I assume this is homework, but transforming a difference equation to the $z$-domain is simple; just recall the time-shifting property of the transform.

$$ x[n] \Leftrightarrow X(z) \rightarrow x[n-k] \Leftrightarrow z^{-k}X(z) $$

So then we have:

$$ y[n] = \frac{1}{2}x[n] + x[n-1] $$

$$ Y(z) = \frac{1}{2}X(z) + z^{-1}X(z) $$

The transfer function can be written as:

$$ H(z) = \frac{Y(z)}{X(z)} = \frac{1}{2} + z^{-1} $$

Jason R
  • 24,595
  • 2
  • 67
  • 74
  • 2
    The region of convergence is missing from the result (you need both the analytic expression plus the ROC in order to fully identify $h[n]$. In this case, ROC is the whole complex plane (except 0). – Juancho Feb 21 '13 at 15:52