I would like to know how one would calculate the inverse Z-transform of $1/(z-a)^3$. Mathematica says this:
In[0]:= InverseZTransform[1/(z - a)^2, z, n]
Out[0]:= (a^(-2 + n)) (-1 + n) UnitStep[-1 + n]
In[0]:= InverseZTransform[1/(z - a)^3, z, n]
Out[0]:= (1/2) (a^(-3 + n)) (-2 + n) (-1 + n) UnitStep[-1 + n]
I've calculated the first one by convolution. How to would I do it for the second?
Thanks.