In class, we are always told that for the Central Limit Theorem to be applicable, observations have to be IID (Independent and Identically Distributed). However, we are not always told why this IID condition is so important for the Central Limit Theorem.
This being said, I am trying to create an example where the IID condition is not met and thus show myself why it is required.
Part 1: The first thing that comes to mind is an Autoregressive Process as by definition AR Processes are said not to be IID. For instance, suppose we have an AR(1) Process:
$$y_t = \phi y_{t-1} + \epsilon_t$$
Based on this AR(1) process, I know the following:
- $E(\epsilon_t) = 0$
- $E(\epsilon_t^2) = \sigma^2$
- $E(\epsilon_t\epsilon_s) = 0$
- $Var(y_t) = \frac{\sigma^2}{1-\phi^2}$
- $E(y_t) = \phi E(y_{t-1}) = 0$
Part 2: As for the Central Limit Theorem, I know that in when $n$ is large, any Random Variable behaves as:
$$\frac{\bar{x} - E(X)}{\sqrt{\frac{Var(X)}{n}}} \approx N(0,1)$$
Part 3: Putting this all together, I would now show that the above AR(1) Process DOES NOT converge to a Standard Normal Distribution:
$$\frac{Y_t - E(Y_t)}{\sqrt{\frac{Var(Y_t)}{n}}} = \frac{Y_t - E(Y_t)}{\sqrt{\frac{\sigma^2}{1-\phi^2}\frac{1}{n}}} \not\approx N(0,1) $$
However, I am not sure if I am doing this correctly for the AR(1) Process and have in fact shown that in the absence of IID, the Central Limit Theorem is not necessarily valid.
In general, can someone please show me an example where the IID condition is not met and as a result the Central Limit Theorem does not apply?
Thanks!
Note: I am aware that there are versions of the Central Limit Theorem that do not require the IID Condition (e.g. https://en.wikipedia.org/wiki/Central_limit_theorem#Lyapunov_CLT, https://en.wikipedia.org/wiki/Lindeberg%27s_condition) - however, I am specifically interested in constructing an example that shows why the Classic Central Limit Theorem requires the IID condition.

