Skip to content

Commit 19d60d7

Browse files
Tom's June 24 edits of two intro lectures
1 parent 92e04de commit 19d60d7

File tree

2 files changed

+16
-14
lines changed

2 files changed

+16
-14
lines changed

lectures/inflation_history.md

Lines changed: 14 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -13,22 +13,22 @@ kernelspec:
1313

1414
# Price Level Histories
1515

16-
This lecture offers some scraps of historical evidence about fluctuations in the level of aggregate price indexes.
16+
This lecture offers some scraps of historical evidence about fluctuations in levels of aggregate price indexes.
1717

1818
The rate of growth of the price level is called **inflation** in the popular press and in discussions among central bankers and treasury officials.
1919

2020
The price level is measured in units of domestic currency per units of a representative bundle of consumption goods.
2121

22-
Thus, in the US, it is measured in dollars in month $t$ or year $t$ per unit of the consumption bundle.
22+
Thus, in the US, the price level at $t$ is measured in dollars in month $t$ or year $t$ per unit of the consumption bundle.
2323

24-
Until the early 20th century, throughout much of the west, although price levels fluctuated year to year,
24+
Until the early 20th century, throughout much of the west, although price levels fluctuated from year to year,
2525
they didn't have much of a trend.
2626

2727
Thus, they tended to end a century at close to a level at which they started it.
2828

2929
Things were different in the 20th century, as we shall see in this lecture.
3030

31-
This lecture will set the stage for some sequel that present a particular theory that some economists use to
31+
This lecture will set the stage for some subsequent lecture about a particular theory that economists use to
3232
think about determinants of the price level.
3333

3434

@@ -48,6 +48,8 @@ The four countries are
4848

4949
In the present context, the phrase hard currency means that the countries were on a commodity-money standard: money consisted of gold and silver coins that circulated at values largely determined by the weights of their gold and silver contents.
5050

51+
(Under a gold or silver standard, some money also consisted of "warehouse certificates" that represented paper claims on gold or silver coins. Bank notes issued by the government or private banks can be viewed as examples of such "warehouse certificate".)
52+
5153
The data we want to study data originally appeared in a graph on page 35 of {cite}`sargent2002big`.
5254

5355

@@ -97,12 +99,13 @@ ax.legend()
9799
ax.set_ylabel('Index 1913 = 100')
98100
ax.set_xlim(xmin=1600)
99101
plt.tight_layout()
102+
fig.text(.5, .0001, "Price Levels", ha='center')
100103
plt.show()
101104
```
102105

103106
We say "most years" because there were temporary lapses from the gold or silver standard.
104107

105-
By staring at the graph carefully, you might be able to guess when these temporary lapses occurred, because they were periods in which price levels rose markedly from average values during more typical years.
108+
By staring at the graph carefully, you might be able to guess when these temporary lapses occurred, because they were also times during which price levels rose markedly from what had been average values during more typical years.
106109

107110
* 1791-1797 in France (the French revolution)
108111
* 1776-1793 in the US (the US War for Independence from Great Britain)
@@ -120,8 +123,7 @@ Two other features of the figure attracted the attention of leading economists s
120123

121124
* that is, society paid a high "opportunity cost" for using gold and silver as coins; gold and silver could instead be used as valuable jewelry and also as an industrial input
122125

123-
Keynes and Fisher argued that there was a socially efficient way to achieve a price level that would
124-
be at least as well anchored, and would also exhibit less year-to-year short-term fluctuations.
126+
Keynes and Fisher proposed what they suggested would be a socially more efficient way to achieve a price level that would be at least as firmly anchored, and would also exhibit less year-to-year short-term fluctuations.
125127

126128
In particular, they argued that a well-managed central bank could achieve price level stability by
127129

@@ -132,7 +134,7 @@ Thus, the waste from using gold and silver as coins prompted John Maynard Keyne
132134

133135
A paper fiat money system disposes of all reserves behind a currency.
134136

135-
In doing so, it also eliminates an automatic supply mechanism constraining the price level.
137+
But notice that in doing so, it also eliminates an automatic supply mechanism constraining the price level.
136138

137139
A low-inflation paper fiat money system replaces that automatic mechanism with an enlightened government that commits itself to limit the quantity of a pure token, no-cost currency.
138140

@@ -143,7 +145,7 @@ We'll show a version of the complete graph that originally appeared on page 35
143145

144146
The graph shows logarithms of price levels our four "hard currency" countries from 1600 to 2000.
145147

146-
We didn't need to take logarithms in our earlier graphs that had stopped in 1914 -- we use logarithms now because we want also to fit observations after 1914 in the same graph as the earlier observations.
148+
Allthough we didn't have to use logarithms in our earlier graphs that had stopped in 1914 -- we use logarithms now because we want also to fit observations after 1914 in the same graph as the earlier observations.
147149

148150
All four of the countries eventually permanently left the gold standard by modifying their monetary and fiscal policies in several ways, starting the outbreak of the Great War in 1914.
149151

@@ -163,6 +165,7 @@ ax.set_ylabel('Index 1913 = 100')
163165
ax.set_xlim(xmin=1600)
164166
ax.set_ylim([10, 1e6])
165167
plt.tight_layout()
168+
fig.text(.5, .0001, "Logs of Price Levels", ha='center')
166169
plt.show()
167170
```
168171

@@ -179,8 +182,7 @@ The breadth and length of the inflationary experiences of the twentieth century,
179182

180183
## Ends of Four Big Inflations
181184

182-
Monetary and fiscal authorities' struggles to replicate price level stability with a paper money standard
183-
were vividly on display in the wake of World War I, which ended in November 1918.
185+
In the wake of World War I, which ended in November 1918, monetary and fiscal authorities struggled to achieve price level stability without being on a gold or silver standard.
184186

185187
We present four graphs from "The Ends of Four Big Inflations" from chapter 3 of {cite}`sargent2013rational`.
186188

@@ -194,7 +196,7 @@ The graphs depict logarithms of price levels during the early post World War I y
194196
We have added logarithms of the exchange rates vis a vis the US dollar to each of the four graphs
195197
from chapter 3 of {cite}`sargent2013rational`.
196198

197-
Data underlying our graphs appear in the tables in an appendix to chapter 3 of {cite}`sargent2013rational`.
199+
Data underlying our graphs appear in tables in an appendix to chapter 3 of {cite}`sargent2013rational`.
198200
We have transcribed all of these data into a spreadsheet `chapter_3.xls` that we read into Pandas.
199201

200202
```{code-cell} ipython3

lectures/long_run_growth.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ kernelspec:
1818

1919
Adam Tooze's account of the geopolitical precedents and antecedents of World War I includes a comparison of how Gross National Products of European Great Powers had evolved during the 70 years preceding 1914 (see chapter 1 of {cite}`Tooze_2014`).
2020

21-
We report a version of Tooze's graph later in this lecture.
21+
We construct a version of Tooze's graph later in this lecture.
2222

2323
Looking at his graph and how it set the geopolitical stage for "the American (20th) century" naturally
2424
tempts one to want a counterpart to his graph for 2014 or later.
@@ -462,7 +462,7 @@ ax = draw_interp_plots(gdp[cntry].loc[start_year:end_year],
462462

463463
### The modern era (1950 to 2020)
464464

465-
As history repeats itself, the rapid growth in modern China is now challenging the economic hegemony of the US
465+
The following graph displays how quickly China has grown, especially since the late 1970s.
466466

467467
```{code-cell} ipython3
468468
---

0 commit comments

Comments
 (0)