Skip to article frontmatterSkip to article content
Site not loading correctly?

This may be due to an incorrect BASE_URL configuration. See the MyST Documentation for reference.

3.3 Stationarity

Strict vs. Weak Stationarity

Now that we are familiar with the autocovariance, we can address stationarity, one of the most central concepts in time series analysis. Loosely, a stationary time series is one that does not demonstrate any trend or seasonal variation. More concretely, there are two distinct definitions of stationarity:

  1. Strict stationarity is defined as a time series for which the probabilistic behavior of any subset of observations is identical, i.e.

Px(xt1<c1,xt2<c2,...,xtk<ck)=Px(xt1+h<c1,xt2+h<c2,...,xtk+h<ck).\mathbb{P}_{x}(x_{t_1}<c_1, x_{t_2}<c_2,...,x_{t_k}<c_k) = \mathbb{P}_{x}(x_{t_{1+h}}<c_1, x_{t_{2+h}}<c_2,...,x_{t_{k+h}}<c_k).
  1. Weak stationarity is defined as a time series for which the following hold:

    i. The mean E[xt]E[x_t] is finite and constant across all times tt.

    ii. The variance V(xt)=γ(t,t)\mathbb{V}(x_t)=\gamma(t, t) is finite and constant across all times tt.

    iii. The autocovariance is a function of lag alone and not of absolute time, γ(s,t)=γ(s+v,t+v)=γ(st)\gamma(s, t)= \gamma(s+v, t+v)=\gamma(|s-t|).

An example of a strictly stationary series would be pure white noise. Stock returns (not values) are also reasonably approximated as being strictly stationary. Weakly stationary processes are far more prevalent; in coming chapters we will encounter numerous examples from fields such as medicine and econometrics.

Strict to Weak Stationarity

It should be obvious that demonstrating weak stationarity does not demonstrate strict stationarity[1]. Interesting, the converse also does not necessarily hold. Consider the white noise process defined by the standard Cauchy distribution:

xtCauchy(0,1)x_t \sim \text{Cauchy}(0,1)

xtx_t is strictly stationary as every point is drawn from the same probability distribution as every other point. However, xtx_t is not weakly stationary as the Cauchy distribution lacks a finite variance. That said, any strongly stationary finite variance process is also weakly stationary.

Advantages of Weak Stationarity

In practice, we generally do not use strict stationarity for two major reasons:

  1. Establishing strict stationarity requires knowing the underlying probability distribution (or at least having a confident guess to it). In contrast, weak stationarity is established solely via observables in the form of the mean, variance, and autocovariance.

  2. Strict stationarity is generally too strict for most purposes. We will see in coming chapters that methods requiring stationarity can be used with weakly stationary time series.

Autocovariance of a Stationary Process

As discussed above, the autocovariance γ(s,t)\gamma(s,t) of a stationary process depends exclusively on the lag h=sth=|s-t|. Consequently, when dealing with stationary processes we will simply use the notation

γ(h),h=st\gamma(h), \qquad h=|s-t|

where γ(0)\gamma(0) is the variance, γ(1)\gamma(1) is the autocovariance at lag 1, and so on. Note that

γ(h)=γ(ts)=γ(st)=γ(h),\gamma(-h) = \gamma(|t-s|) = \gamma(|s-t|) = \gamma(h),

consequently, we will only calculate γ(h)\gamma(h) for h0h\geq0.

Autocovariance of a Stationary Process is Positive Semidefinite

We are now in a position to prove a property of autocovariance that will be useful in future chapters. The autocovariance matrix Γ\boldsymbol{\Gamma} is defined as

Γ=[γ(0)γ(1)γ(h)γ(1)γ(0)γ(h1)γ(h)γ(h1)γ(0)].\boldsymbol{\Gamma}=\begin{bmatrix} \gamma(0) && \gamma(1) && \ldots && \gamma(h)\\ \gamma(1) && \gamma(0) && \ldots && \gamma(h-1)\\ \vdots && \vdots && \ddots && \vdots\\ \gamma(h) && \gamma(h-1) && \ldots && \gamma(0)\\ \end{bmatrix}.

Γ\boldsymbol{\Gamma} for a stationary process, like standard covariance matrices, is positive semidefinite. A positive semidefinite matrix is defined as a symmetric matrix[2] XRn×n\mathbf{X} \in \mathbb{R}^{n\times n} with the property that for any vector vRn\mathbf{v}\in\mathbb{R}^{n}

vTXv0.\mathbf{v}^T\mathbf{X}\mathbf{v} \geq 0.

To demonstrate that Γ\boldsymbol{\Gamma} is positive semidefinite, let

=0xt+1xt1++hxth.\mathbf{\ell}\stackrel{\triangle}{=} \ell_0 x_t+\ell_1 x_{t-1}+\ldots+\ell_h x_{t-h}.

As variance cannot be negative, we have

V()=V(0xt+1xt1++hxth)0,\mathbb{V}(\mathbf{\ell}) = \mathbb{V}(\ell_0 x_t+\ell_1 x_{t-1}+\ldots+\ell_h x_{t-h}) \geq 0,

or using the variance of a sum

V()=i=0hj=0hijCov(xti,xtj)=i=0hj=0hijγ(ij)=[0,1,h][γ(0)γ(1)γ(h)γ(1)γ(0)γ(h1)γ(h)γ(h1)γ(0)][01h]=TΓ0.\begin{split} \mathbb{V}(\mathbf{\ell}) &= \sum_{i=0}^h\sum_{j=0}^h \ell_i \ell_j \text{Cov}(x_{t-i}, x_{t-j})\\ &= \sum_{i=0}^h\sum_{j=0}^h \ell_i \ell_j \gamma(|i-j|)\\ &= \begin{bmatrix} \ell_0, && \ell_1, && \ldots && \ell_{h} \end{bmatrix} \begin{bmatrix} \gamma(0) && \gamma(1) && \ldots && \gamma(h)\\ \gamma(1) && \gamma(0) && \ldots && \gamma(h-1)\\ \vdots && \vdots && \ddots && \vdots\\ \gamma(h) && \gamma(h-1) && \ldots && \gamma(0)\\ \end{bmatrix} \begin{bmatrix} \ell_0 \\ \ell_1 \\ \vdots \\ \ell_{h} \end{bmatrix}\\ &=\mathbf{\ell}^T\boldsymbol{\Gamma}\mathbf{\ell}\\ &\geq 0. \end{split}

As the above holds for any possible vector Rh+1\mathbf{\ell} \in \mathbb{R}^{h+1} we conclude that Γ\boldsymbol{\Gamma} must be positive semidefinite.

Footnotes
  1. It can be proved that if the process that generates xtx_t is a Gaussian process, then weak stationarity does demonstrate strict stationarity. This is not overly useful in practice as it requires us to know xtx_t’s hidden generating process.

  2. The definition of positive semidefiniteness can be expanded to include complex vectors and matrices, but that will not be necessary for this book.

References
  1. Shumway, R. H., & Stoffer, D. S. (2025). Time Series Analysis and Its Applications: With R Examples. In Springer Texts in Statistics. Springer Nature Switzerland. 10.1007/978-3-031-70584-7
  2. Brockwell, P. J., & Davis, R. A. (1991). Time Series: Theory and Methods. In Springer Series in Statistics. Springer New York. 10.1007/978-1-4419-0320-4