Solved – Autocovariance, Autocorrelation and Autocorrelation coefficient

autocorrelationself-studytime series

I am taking a course about time series this year, and this is a brand new topic for me. I just got my first assignment and I am confused by a couple of terminologies.

Q1. What is the difference between autocovariance, autocorrelation and autocorrelation coefficient?
I tried to google it, but most of them don't really make sense to me.

Q2. The question asks to estimate lag-1 autocorrelation coefficient, but what is lag? Is it a variable?

Any help would be really appreciated!
We don't lecture slides or any additional materials for this course, so if you have any textbooks, papers or slides that are helpful, feel free to comment below.

Best Answer

Q1: Say you have observations over time on a variable $\{x_t\}, t=\{1,...,T\}$. If they are generated from a second-order stationary stochastic process (Click) you may apply the following techniques to find the first autocovariance and the first autocorrelation coefficient.

Calculate the covariance of observations $x_t, \forall t>1$ and $x_{t-1}$, this gives the first autocovariance. This generalizes: $Cov(x_t,x_{t-n})$ is the n-th autocovariance. If you divide the autocovariance by the variance of the $x_t$ you obtain the autocorrelation coefficient: $\rho_1=\frac{Cov(x_t,x_{t-1})}{Var(x_t)}$.

Autocorrelation is the property of the variable $x_t$ indicated by the autocorrelation coefficient, which tells you how much the realization $x_t$ depends on the last realization $x_{t-1}$. This naturally leads into the idea of an autoregressive process. For example an autoregressive process of order 1 is given by $x_t=\rho_1 x_{t-1}+\epsilon_t$, where $\epsilon_t$ is a standard-normal random variable. So, $x_{t-1}$ will contribute to $x_t$ according to the parameter $\rho_1$. Click

Q2: You can piece it together from the answer to Q1. The lag-operator shifts the period on a variable like $x_t$ to a previous period. For example, $L(x_t)=x_{t-1}$, where $L()$ is the one-period lag-operator. You can find the estimate of $\rho_1$ by running a linear regression of present values of your variable on their realizations one period back.

Related Question