Skip to content

Commit 3c7f340

Browse files
committed
Update cagan_adaptive.md
Solve some of the issues in #392, specifically: - change the name `create_cagan_model` to `create_cagan_adaptive_model` - Change 'monetarist theory of price level' to 'A monetarist theory of price level' - Remove the extra quotation mark in the second sentences - Change 'endogenous input' to 'exogenous input'
1 parent 440a83d commit 3c7f340

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

lectures/cagan_adaptive.md

+11-11
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,13 @@ kernelspec:
1616
## Introduction
1717

1818

19-
This lecture is a sequel or prequel to another lecture {doc}`monetarist theory of price levels <cagan_ree>`.
19+
This lecture is a sequel or prequel to another lecture {doc}`A monetarist theory of price levels <cagan_ree>`.
2020

21-
We'll use linear algebra to do some experiments with an alternative "monetarist" or "fiscal" theory of price levels".
21+
We'll use linear algebra to do some experiments with an alternative "monetarist" or "fiscal" theory of price levels.
2222

23-
Like the model in this lecture {doc}`monetarist theory of price levels <cagan_ree>`, the model asserts that when a government persistently spends more than it collects in taxes and prints money to finance the shortfall, it puts upward pressure on the price level and generates persistent inflation.
23+
Like the model in this lecture {doc}`A monetarist theory of price levels <cagan_ree>`, the model asserts that when a government persistently spends more than it collects in taxes and prints money to finance the shortfall, it puts upward pressure on the price level and generates persistent inflation.
2424

25-
Instead of the "perfect foresight" or "rational expectations" version of the model in this lecture {doc}`monetarist theory of price levels <cagan_ree>`, our model in the present lecture is an "adaptive expectations" version of a model that Philip Cagan {cite}`Cagan` used to study the monetary dynamics of hyperinflations.
25+
Instead of the "perfect foresight" or "rational expectations" version of the model in this lecture {doc}`A monetarist theory of price levels <cagan_ree>`, our model in the present lecture is an "adaptive expectations" version of a model that Philip Cagan {cite}`Cagan` used to study the monetary dynamics of hyperinflations.
2626

2727
It combines these components:
2828

@@ -54,7 +54,7 @@ Let
5454
* $\pi_0^*$ public's initial expected rate of inflation between time $0$ and time $1$.
5555

5656

57-
The demand for real balances $\exp\left(\frac{m_t^d}{p_t}\right)$ is governed by the following version of the Cagan demand function
57+
The demand for real balances $\exp\left(m_t^d-p_t\right)$ is governed by the following version of the Cagan demand function
5858

5959
$$
6060
m_t^d - p_t = -\alpha \pi_t^* \: , \: \alpha > 0 ; \quad t = 0, 1, \ldots, T .
@@ -88,7 +88,7 @@ $$ (eq:adaptexpn)
8888
As exogenous inputs into the model, we take initial conditions $m_0, \pi_0^*$
8989
and a money growth sequence $\mu = \{\mu_t\}_{t=0}^T$.
9090
91-
As endogenous outputs of our model we want to find sequences $\pi = \{\pi_t\}_{t=0}^T, p = \{p_t\}_{t=0}^T$ as functions of the endogenous inputs.
91+
As endogenous outputs of our model we want to find sequences $\pi = \{\pi_t\}_{t=0}^T, p = \{p_t\}_{t=0}^T$ as functions of the exogenous inputs.
9292
9393
We'll do some mental experiments by studying how the model outputs vary as we vary
9494
the model inputs.
@@ -278,7 +278,7 @@ $$ (eq:notre)
278278
This outcome is typical in models in which adaptive expectations hypothesis like equation {eq}`eq:adaptexpn` appear as a
279279
component.
280280
281-
In this lecture {doc}`monetarist theory of the price level <cagan_ree>`, we studied a version of the model that replaces hypothesis {eq}`eq:adaptexpn` with
281+
In this lecture {doc}`A monetarist theory of the price level <cagan_ree>`, we studied a version of the model that replaces hypothesis {eq}`eq:adaptexpn` with
282282
a "perfect foresight" or "rational expectations" hypothesis.
283283
284284
@@ -296,7 +296,7 @@ import matplotlib.pyplot as plt
296296
Cagan_Adaptive = namedtuple("Cagan_Adaptive",
297297
["α", "m0", "Eπ0", "T", "λ"])
298298
299-
def create_cagan_model(α, m0, Eπ0, T, λ):
299+
def create_cagan_adaptive_model(α, m0, Eπ0, T, λ):
300300
return Cagan_Adaptive(α, m0, Eπ0, T, λ)
301301
```
302302
+++ {"user_expressions": []}
@@ -314,7 +314,7 @@ m0 = 1
314314
μ0 = 0.5
315315
μ_star = 0
316316
317-
md = create_cagan_model(α=α, m0=m0, Eπ0=μ0, T=T, λ=λ)
317+
md = create_cagan_adaptive_model(α=α, m0=m0, Eπ0=μ0, T=T, λ=λ)
318318
```
319319
+++ {"user_expressions": []}
320320
@@ -431,7 +431,7 @@ $$
431431
\end{cases}
432432
$$
433433
434-
Notice that we studied exactly this experiment in a rational expectations version of the model in this lecture {doc}`monetarist theory of the price level <cagan_ree>`.
434+
Notice that we studied exactly this experiment in a rational expectations version of the model in this lecture {doc}`A monetarist theory of the price level <cagan_ree>`.
435435
436436
So by comparing outcomes across the two lectures, we can learn about consequences of assuming adaptive expectations, as we do here, instead of rational expectations as we assumed in that other lecture.
437437
@@ -442,7 +442,7 @@ So by comparing outcomes across the two lectures, we can learn about consequence
442442
π_seq_1, Eπ_seq_1, m_seq_1, p_seq_1 = solve_and_plot(md, μ_seq_1)
443443
```
444444
445-
We invite the reader to compare outcomes with those under rational expectations studied in another lecture {doc}`monetarist theory of price levels <cagan_ree>`.
445+
We invite the reader to compare outcomes with those under rational expectations studied in another lecture {doc}`A monetarist theory of price levels <cagan_ree>`.
446446
447447
Please note how the actual inflation rate $\pi_t$ "overshoots" its ultimate steady-state value at the time of the sudden reduction in the rate of growth of the money supply at time $T_1$.
448448

0 commit comments

Comments
 (0)