Skip to content

Commit a2f76db

Browse files
Tom's edits of another lecture, July 5
1 parent 7337136 commit a2f76db

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

lectures/multivariate_normal.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1805,6 +1805,41 @@ $$
18051805
\end{aligned}
18061806
$$
18071807

1808+
If we shift the first equation forward one period and then substitute the expression for $\tilde \Sigma_t$ on the right side of the fifth equation
1809+
into it we obtain
1810+
1811+
$$
1812+
\Sigma_{t+1}= C C' + A \Sigma_t A' - A \Sigma_t G' (G \Sigma_t G' +R)^{-1} G \Sigma_t A' .
1813+
$$
1814+
1815+
This is a matrix Riccati difference equation that is closely related to another matrix Riccati difference equation that appears in a quantecon lecture on the basics of linear quadratic control theory.
1816+
1817+
That equation has the form
1818+
1819+
1820+
1821+
```{math}
1822+
1823+
P_{t-1} =R + A' P_t A - A' P_t B
1824+
(B' P_t B + Q)^{-1} B' P_t A .
1825+
1826+
```
1827+
1828+
Stare at the two preceding equations for a moment or two, the first being a matrix difference equation for a conditional covariance matrix, the
1829+
second being a matrix difference equation in the matrix appearing in a quadratic form for an intertemporal cost of value function.
1830+
1831+
Although the two equations are not identical, they display striking family resemblences.
1832+
1833+
* the first equation tells dynamics that work **forward** in time
1834+
* the second equation tells dynamics that work **backward** in time
1835+
* while many of the terms are similar, one equation seems to apply matrix transformations to some matrices that play similar roles in the other equation
1836+
1837+
The family resemblences of these two equations reflects a transcendent **duality** between control theory and filtering theory.
1838+
1839+
### An example
1840+
1841+
1842+
18081843
We can use the Python class *MultivariateNormal* to construct examples.
18091844

18101845
Here is an example for a single period problem at time $0$

0 commit comments

Comments
 (0)