The Dickey-Fuller (DF) test checks whether a time series behaves like it has a unit root (shocks have persistent effects, like a random walk) versus being stationary/mean-reverting.
The idea in one model
A common starting point is an AR(1) process:
[ y_t = \rho y_{t-1} + \varepsilon_t. ]
- If (\rho = 1), the series has a unit root (it is not mean-reverting).
- If (|\rho| < 1), the series is stationary around a constant mean (in the weak/covariance sense).
Rewriting the AR(1) in differences gives the regression form used by DF:
[ \Delta y_t = \gamma y_{t-1} + \varepsilon_t, \qquad \gamma = \rho - 1. ]
So testing for a unit root is equivalent to:
[ H_0: \gamma = 0 \quad (\rho=1) \qquad \text{vs} \qquad H_1: \gamma < 0 \quad (|\rho|<1). ]
Constant and trend versions
Empirical work often includes deterministic terms:
[ \Delta y_t = \alpha + \beta t + \gamma y_{t-1} + \varepsilon_t. ]
- Adding (\alpha) allows a nonzero mean (drift).
- Adding (\beta t) allows a deterministic linear trend.
Which version is appropriate depends on the series and the economic question.
Why the critical values are “non-standard”
Under the unit-root null, the usual t-distribution for the coefficient on (y_{t-1}) does not apply. The DF test uses special critical values (from Dickey-Fuller tabulations) rather than ordinary t-test cutoffs.
The augmented Dickey-Fuller (ADF) extension
Real time series often have serially correlated errors. The augmented DF test adds lagged differences to absorb that correlation:
[ \Delta y_t = \alpha + \beta t + \gamma y_{t-1} + \sum_{i=1}^{k} \delta_i \Delta y_{t-i} + \varepsilon_t. ]
The unit-root null is still (\gamma=0).
How economists use it
- If you fail to reject a unit root, you typically treat the series as integrated (often (I(1))) and consider differencing or cointegration methods.
- If you reject a unit root, you are more comfortable modeling the series in levels with stationary time-series tools.
A good practice is to pair test results with plots and economic reasoning (structural breaks, regime changes, and measurement revisions can change the conclusion).
Related Terms
- Unit Root Process
- Random Walk
- Nonstationary Process
- Covariance Stationary Process
- Weak Stationarity
- Augmented Dickey-Fuller
- Cointegration
- ARIMA