Q: If $X_t$ is a AR(2)-process, what is $Y_t = X_t - X_{t-1}$?
$X_t$ is a AR(2)-process if it's stationary and satisfies $X_t = \phi_1 X_{t-1} + \phi_2 X_{t-2} + \epsilon_t$, where $\epsilon_t$ is white noise.
One may elaborate \begin{equation}\begin{split} Y_t &= X_t - X_{t-1}\\ &= \phi_1 X_{t-1} + (\phi_2 - \phi_1) X_{t-2} - \phi_2 X_{t-3} + \epsilon_t - \epsilon_{t-1} \\ &=(\phi_1B +(\phi_2 - \phi_1)B^2 - \phi_2B^3)X_t + (1-B)\epsilon_t \end{split}\end{equation}
But I don't know the benefit.
I have the following options:
- $Y_t$ is an ARMA(2,1)-process
- $Y_t$ is an AR(2)-process
- $Y_t$ is an MA(2)-process
- $Y_t$ is an AR(3)-process
This is AR(2) model, not MA(2) model
– Thành Nguyễn May 29 '23 at 13:08