I have a difference equation
$$y[n] = y[n-1] + 0.5x[n] - 0.5x[n-2] \text{.}$$
According to this answer, the filter should have finite impulse response. I just can't figure out how to get the FIR filter coefficients. I tried to use the transfer function.
$$Y(z) - Y(z)z^{-1} = 0.5X(z) - 0.5X(z)z^{-2}$$
$$H(z) = \frac{Y(z)}{X(z)} = \frac{0.5 - 0.5z^{-2}}{1-z^{-1}}$$
But here I got stuck. Can anyone tell me how to make this a non-recursive implementation?