

Introduction
The characteristic equation of a time series process helps determine its stationarity and stability by analyzing the roots of its characteristic polynomial. This is particularly important for AR(p), MA(q), and ARMA(p, q) processes.
Characteristic Equation for an AR(p) Process
An Auto-Regressive (AR) process of order p, denoted as AR(p), is defined as:
Xt = ϕ1Xt−1 + ϕ2Xt−2 +...+ ϕpXt−p + ϵt
where:- Xt is the current value,
- ϕ1, ϕ2,...,ϕp are AR coefficients,
- ϵt is white noise.
The AR(p) process can be rewritten as below by replacing Xt with its backward shift operator or lag operator (L):
(1 − ϕ1L − ϕ2L2 −...− ϕpLp) Xt = ϵt
where LkXt = Xt-k
Characteristic Polynomial
The term in parentheses:
1 − ϕ1L − ϕ2L2 − ... − ϕpLp
is called the characteristic polynomial of the AR(p) process.The characteristic equation is obtained by setting the characteristic polynomial to 0 :
1 − ϕ1L − ϕ2L2 − ... − ϕpLp = 0
Example: AR(2) Process
For an AR(2) process:
Xt = ϕ1Xt −1 + ϕ2Xt−2 + ϵt
The characteristic equation is:
1 − ϕ1L − ϕ2L2 = 0
Stationarity Condition Using Characteristic Equation
For an AR(p) process to be stationary, the roots of the characteristic equation must lie outside the unit circle (i.e., their absolute values must be greater than 1).
Example 1: AR(1) Process
Xt = ϕXt−1 + ϵt
Characteristic equation:
1 − ϕL = 0
=> L = 1 / ϕ
- Stationary if ∣ L ∣ > 1 (root outside the unit circle).
- Non-stationary if ∣ L ∣ ≤ 1 (root inside or on the unit circle)
- Stationary if ∣ ϕ ∣ < 1 .
- Non-stationary if ∣ ϕ ∣ ≥. 1
Example 2: AR(2) Process
Xt = ϕ1Xt−1 − ϕ2Xt−2 + ϵt
Characteristic equation:
1 − ϕ1L - ϕ2L2 = 0
To check stationarity, we solve for the roots of:
ϕ2L2 + ϕ1L - 1 = 0
Using the quadratic formula:
L = −ϕ1 ± (ϕ12 + 4ϕ2)(1/2) / (2ϕ2)
These roots determine whether the AR(2) process is stationary:
- If both roots satisfy ∣ L ∣ > 1, the process is stationary.
- If any root satisfies ∣ L ∣ ≤ 1, the process is non-stationary.
Characteristic Equation for a MA(q) Process
An Moving Average (MA) process of order q, denoted as MA(q), is defined as:
Xt = θ1ϵt−1 + θ2ϵt−2 +...+ θqϵt−q + ϵt
where:- Xt is the current value
- θ1, θ2,...,θq are MA coefficients
- ϵt is white noise.
The MA(q) process can be rewritten as below by replacing ϵt with its backward shift operator or lag operator (L):
(1 − θ1L − θ2L2 −...− θpLp) ϵt = ϵt
where LkXt = Xt-kThe characteristic equation is:
1 + θ1L + θ2L2 + ... + θqLq = 0
Example: MA(2) Process
For an MA(2) process:
Xt = θ1ϵt −1 + θ2ϵt−2 + ϵt
The characteristic equation is:
1 + θ1L + θ2L2 = 0