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
We can generate a draw of $X$ with `scipy.stats` (imported as `st`) as follows:
73
77
@@ -369,7 +373,8 @@ The LLN fails to hold here because the assumption $\mathbb E|X| < \infty$ is vio
369
373
370
374
The LLN can also fail to hold when the IID assumption is violated.
371
375
372
-
For example, suppose that
376
+
```{prf:example}
377
+
:label: lln_ex_fail
373
378
374
379
$$
375
380
X_0 \sim N(0,1)
@@ -384,6 +389,7 @@ $$
384
389
$$
385
390
386
391
Therefore, the distribution of $\bar X_n$ is $N(0,1)$ for all $n$!
392
+
```
387
393
388
394
Does this contradict the LLN, which says that the distribution of $\bar X_n$
389
395
collapses to the single point $\mu$?
@@ -439,9 +445,9 @@ n \to \infty
439
445
Here $\stackrel { d } {\to} N(0, \sigma^2)$ indicates [convergence in distribution](https://en.wikipedia.org/wiki/Convergence_of_random_variables#Convergence_in_distribution) to a centered (i.e., zero mean) normal with standard deviation $\sigma$.
440
446
441
447
442
-
The striking implication of the CLT is that for **any** distribution with
448
+
The striking implication of the CLT is that for any distribution with
443
449
finite [second moment](https://en.wikipedia.org/wiki/Moment_(mathematics)), the simple operation of adding independent
444
-
copies **always** leads to a Gaussian(Normal) curve.
450
+
copies always leads to a Gaussian(Normal) curve.
445
451
446
452
447
453
@@ -599,7 +605,7 @@ $$
599
605
$$
600
606
601
607
where $\alpha, \beta, \sigma$ are constants and $\epsilon_1, \epsilon_2,
Copy file name to clipboardExpand all lines: lectures/unpleasant.md
+4-4
Original file line number
Diff line number
Diff line change
@@ -97,7 +97,7 @@ $\widetilde R \check B_{-1}$ is a *real* quantity, being measured in time $0$ go
97
97
98
98
### Open market operations
99
99
100
-
At time $0$, government can rearrange its portolio of debts with subject to the following constraint (on open-market operations):
100
+
At time $0$, government can rearrange its portfolio of debts subject to the following constraint (on open-market operations):
101
101
102
102
$$
103
103
\widetilde R B_{-1} + \frac{m_0}{p_0} = \widetilde R \check B_{-1} + \frac{\check m_0}{p_0}
@@ -152,7 +152,7 @@ running monetary and fiscal policies.
152
152
153
153
Here, by **fiscal policy** we mean the collection of actions that determine a sequence of net-of-interest government deficits $\{g_t\}_{t=0}^\infty$ that must be financed by issuing to the public either money or interest bearing bonds.
154
154
155
-
By **monetary policy** or **debt-management policy**, we mean the collection of actions that determine how the government divides its portolio of debts to the public between interest-bearing parts (government bonds) and non-interest-bearing parts (money).
155
+
By **monetary policy** or **debt-management policy**, we mean the collection of actions that determine how the government divides its portfolio of debts to the public between interest-bearing parts (government bonds) and non-interest-bearing parts (money).
156
156
157
157
By an **open market operation**, we mean a government monetary policy action in which the government
158
158
(or its delegate, say, a central bank) either buys government bonds from the public for newly issued money, or sells bonds to the public and withdraws the money it receives from public circulation.
@@ -315,7 +315,7 @@ These parameter settings mean that just before time $0$, the "central bank" sell
315
315
316
316
That leaves the public with less currency but more government interest-bearing bonds.
317
317
318
-
Since the public has less currency (it's supply has diminished) it is plausible to anticipate that the price level at time $0$ will be driven downward.
318
+
Since the public has less currency (its supply has diminished) it is plausible to anticipate that the price level at time $0$ will be driven downward.
319
319
320
320
But that is not the end of the story, because this **open market operation** at time $0$ has consequences for future settings of $m_{t+1}$ and the gross-of-interest government deficit $\bar g_t$.
321
321
@@ -418,7 +418,7 @@ plt.xlabel('$m_0$')
418
418
plt.show()
419
419
```
420
420
421
-
Now let's write and implement code that let's us experiment with the time $0$ open market operation described earlier.
421
+
Now let's write and implement code that lets us experiment with the time $0$ open market operation described earlier.
0 commit comments