Hello everyone. I tried to get the inverse Z transform of z/(z - a) with different ROC.
InverseZTransform[z/(z - a), z, n, Assumptions -> Abs[z] > Abs[a]]
InverseZTransform[z/(z - a), z, n, Assumptions -> Abs[z] < Abs[a]]
Both cases give me the following output a^n. Actually the inverse Z transform is
(a^n) HeavisideTheta[n] when ROC is Abs[z] > Abs[a],
and is
(-a^n) HeavisideTheta[-n-1] when ROC is Abs[z] < Abs[a].
How can I get these outputs?
Thank you very much.