Skip to content

Commit f478d76

Browse files
committed
updates
1 parent 22658c4 commit f478d76

1 file changed

Lines changed: 9 additions & 6 deletions

File tree

lectures/additive_functionals.md

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1093,6 +1093,13 @@ plt.legend()
10931093
plt.show()
10941094
```
10951095

1096+
These plots help explain the *peculiar property* of the multiplicative martingale.
1097+
1098+
The rapid growth of variance, skewness, and kurtosis reveals that the distribution of $\widetilde M_t$ becomes increasingly right-skewed over time while $E[\widetilde M_t] = 1$ for all $t$.
1099+
1100+
This means that most probability density concentrates near zero, while a long right tail preserves the unit mean.
1101+
1102+
10961103
### Simulating a multiplicative martingale again
10971104

10981105
Next, we want a program to simulate the likelihood ratio process $\{ \tilde{M}_t \}_{t=0}^\infty$.
@@ -1102,11 +1109,7 @@ $[A, B, D, F] = [0.8, 0.001, 1.0, 0.01]$ and $\nu = 0.005$.
11021109

11031110
After accomplishing this, we want to display and study histograms of $\tilde{M}_T^i$ for various values of $T$.
11041111

1105-
Here is code that accomplishes these tasks.
1106-
1107-
### Sample paths
1108-
1109-
Let's write a program to simulate sample paths of $\{ x_t, y_{t} \}_{t=0}^{\infty}$.
1112+
Let's first write a program to simulate sample paths of $\{ x_t, y_{t} \}_{t=0}^{\infty}$.
11101113

11111114
We'll do this by formulating the additive functional as a linear state space model and putting the [LinearStateSpace](https://github.com/QuantEcon/QuantEcon.py/blob/master/quantecon/lss.py) class to work via our `AMF_LSS_VAR` class {ref}`defined above <amf_lss>`.
11121115

@@ -1261,7 +1264,7 @@ plt.tight_layout()
12611264
plt.show()
12621265
```
12631266

1264-
These probability density functions help us understand mechanics underlying the **peculiar property** of our multiplicative martingale
1267+
These probability density functions again help us understand mechanics underlying the **peculiar property** of our multiplicative martingale
12651268

12661269
* As $T$ grows, most of the probability mass shifts leftward toward zero.
12671270
* For example, note that most mass is near $1$ for $T =10$ or $T = 100$ but

0 commit comments

Comments
 (0)