Solved – Variance of ARMA(2,1)

arimatime seriesvariance

How do I find the variance of this ARMA(2,1) model?
$$
X_t=0.5X_{t-2} + e_t + e_{t-1}
$$
I know the formula for ARMA(1,1), but when trying to solve I just keep getting an endless path of higher auto-covariances to find.

Best Answer

Assuming the series are stationary, you know that $Var[X_t]=Var[X_{t-1}]=Var[X_{t-2}]$. You can figure out the rest yourself.

Also, your process is a restricted ARMA(2,1), because you set coefficient of the first lag to 0.

Related Question