This file will cover two non-stationary models
Essentially, ARIMA are ARMA models extended to have roots on the unit circle. Technically, ARIMA models are a special case of ARUMA model. In this class, we will focus on the using ARUMA to model seasonality.
An ARIMA model is described by the equation
$$ \phi \left( B \right) \left( 1 - B \right)^d X_t = \theta \left( B \right) a_t $$where
The $\left( 1 - B \right)^d$ factor of the equation makes the model non-stationary
Let $Y_t$ be defined as
$$ Y_t = (1-B) X_t $$Then
$$Y_t = a_t$$Thus,
$$ X_t = X_{t-1} + a_t $$Observations from ARIMA(0,1,0)
Sample autocorrelations that are slowly descreasing in magnitude are a sign that an ARIMA model is appropriate.
An ARUMA model is described by the equation
$$ \phi \left( B \right) \left( 1 - B \right)^d \left( 1- B^s \right) X_t = \theta \left( B \right) a_t $$where
ARUMA is an generalization of ARIMA that includes a term or term(s) for seasonality.
Some examples of seasonality are quarterly and monthly. The factors for quarterly seasonality is shown. Notice that these factors have roots on the unit circle, making them non-stationary components.
$$ \left( 1 - B^4 \right) = (1-B) (1+ B) \left( 1 + B^2 \right) $$ARUMA really is a more general model than the combination of ARIMA with seasonality. It includes any model with additional non-stationary factors that do not form seasonal or integrated forms.
The orders of autoregressive, integration, and moving average are denoted with p, d, and q respectively. So an ARIMA model is described with ARIMA(p,d,q). There is no generalization for seasonality or other non-stationary factors. So the factor orders of ARUMA are denoted in the same way as ARIMA.