Stationarity and Unit Roots
A series is stationary when its distribution is stable over time and weakly dependent when correlations fade as observations move apart, the conditions that make OLS well behaved. A unit root breaks this: the random walk is the leading example, where shocks never die out and the variance grows without bound. Such a series is integrated of order one, , because its first difference is stationary, or . The (Augmented) Dickey-Fuller test checks for a unit root, and because the statistic does not follow the usual distribution, it uses special Dickey-Fuller critical values.
Try it yourself
One AR(1) process, yₜ = φ·yₜ₋₁ + eₜ with y₀ = 0 and the same fixed shocks eₜ. Slide the persistence φ: for |φ| < 1 the path is mean-reverting to 0, at φ = 1 it is a random walk (unit root) whose shocks never fade.
Why it matters
Think of a stationary series as a ball on a tether. Pull it away and it springs back to its mean. A unit-root series is a ball on ice. Give it a shove and it keeps that displacement forever, wandering off with no fixed level to return to. Differencing turns the wandering level into stationary changes, which is why data are usually analyzed in first differences.
Formulas
Worked examples
You need to know whether the log of an exchange-rate series has a unit root before modeling it.
Run an augmented Dickey-Fuller test allowing for autocorrelation: `dfuller lrate, lags(1)`. If the test statistic is not more negative than the Dickey-Fuller critical value, you fail to reject the unit-root null and treat the series as . Then model it in first differences with `D.lrate`.
Common mistakes
- ✗A random walk is stationary because it has no trend term. It is nonstationary: its variance grows over time and shocks have permanent effects.
- ✗You can read the Dickey-Fuller test against ordinary critical values. The statistic has a nonstandard distribution, so you must use the special Dickey-Fuller critical values.
- ✗Failing to reject the unit-root null proves there is a unit root. A non-rejection only means there is insufficient evidence against it; unit-root tests have limited power.
- ✗Differencing an series is harmless. Over-differencing a stationary series introduces problems such as a non-invertible moving-average error.
Revision bullets
- •Stationary + weakly dependent is what OLS needs
- •A unit root (random walk) has permanent shocks and growing variance
- •Random walk is ; its first difference is
- •Test with the (Augmented) Dickey-Fuller test
- •ADF uses nonstandard Dickey-Fuller critical values
Quick check
The random walk is best described as:
When conducting an Augmented Dickey-Fuller test, you must compare the statistic to:
Connected topics
Sources
- Wooldridge (2019), §11.3 and §18.2Wooldridge, Jeffrey M. Introductory Econometrics: A Modern Approach. 7th ed. Cengage, 2019.Develops stationarity, weak dependence, highly persistent series, and the Dickey-Fuller unit-root test.
- Dickey & Fuller (1979)Dickey, D.A., and W.A. Fuller. Distribution of the Estimators for Autoregressive Time Series with a Unit Root. Journal of the American Statistical Association 74 (1979): 427-431.Original derivation of the unit-root test and its nonstandard limiting distribution.