You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Notice that the covariance between $y_t$ and $y_{t-1}$ -- the elements on the superdiagonal -- are **not** identical.
501
+
502
+
This is is an indication that the time series respresented by our $y$ vector is not **stationary**.
503
+
504
+
To make it stationary, we'd have to alter our system so that our **initial conditions** $(y_1, y_0)$ are not fixed numbers but instead a jointly normally distributed random vector with a particular mean and covariance matrix.
505
+
506
+
We describe how to do that in another lecture in this lecture {doc}`Linear State Space Models <linear_models>`.
507
+
508
+
But just to set the stage for that analysis, let's increase $T$ to 100 and print out the bottom right corner of $\Sigma_y$.
print("bottom right corner of Sigma_y = \n", Sigma_y[95:,95:])
515
+
```
516
+
517
+
Please notice how the sub diagonal and super diagonal elements seem to have converged.
518
+
519
+
This is an indication that our process is asymptotically stationary.
520
+
521
+
You can read about stationarity of more general linear time series models in this lecture {doc}`Linear State Space Models <linear_models>`.
522
+
523
+
There is a lot to be learned about the process by staring at the off diagonal elements of $\Sigma_y$ corresponding to different time periods $t$, but we resist the temptation to do so here.
524
+
525
+
+++
526
+
527
+
528
+
## A Forward Looking Model
353
529
354
530
Samuelson’s model is **backwards looking** in the sense that we give it **initial conditions** and let it
0 commit comments