Skip to content

Commit 90a9982

Browse files
mmckyHumphreyYangthomassargent30
authored
LECT: New Lecture on Tax Smoothing (#568)
* update cons_smooth * change names * update text * add tax_smooth * update tax smooth lecture * update lecture * update tax lecture * J to W * update text * Tom's Jan30 edits of tax-smooth lecture * update graphs in tax_smooth * update graphs for cons_smooth * remove the commented text * remove capitalization * Tom's Jan 31 edits of two smoothing lectures --------- Co-authored-by: Humphrey Yang <[email protected]> Co-authored-by: thomassargent30 <[email protected]> Co-authored-by: Humphrey Yang <[email protected]>
1 parent 90da8b0 commit 90a9982

File tree

3 files changed

+709
-46
lines changed

3 files changed

+709
-46
lines changed

lectures/_toc.yml

+1
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ parts:
2525
chapters:
2626
- file: pv
2727
- file: cons_smooth
28+
- file: tax_smooth
2829
- file: equalizing_difference
2930
- file: cagan_ree
3031
- file: cagan_adaptive

lectures/cons_smooth.md

+49-46
Original file line numberDiff line numberDiff line change
@@ -4,29 +4,30 @@ jupytext:
44
extension: .md
55
format_name: myst
66
format_version: 0.13
7-
jupytext_version: 1.16.1
7+
jupytext_version: 1.16.4
88
kernelspec:
99
display_name: Python 3 (ipykernel)
1010
language: python
1111
name: python3
1212
---
1313

14-
1514
# Consumption Smoothing
1615

1716
## Overview
1817

1918

2019
In this lecture, we'll study a famous model of the "consumption function" that Milton Friedman {cite}`Friedman1956` and Robert Hall {cite}`Hall1978`) proposed to fit some empirical data patterns that the original Keynesian consumption function described in this QuantEcon lecture {doc}`geometric series <geom_series>` missed.
2120

22-
In this lecture, we'll study what is often called the "consumption-smoothing model" using matrix multiplication and matrix inversion, the same tools that we used in this QuantEcon lecture {doc}`present values <pv>`.
21+
We'll study what is often called the "consumption-smoothing model."
22+
23+
We'll use matrix multiplication and matrix inversion, the same tools that we used in this QuantEcon lecture {doc}`present values <pv>`.
2324

2425
Formulas presented in {doc}`present value formulas<pv>` are at the core of the consumption-smoothing model because we shall use them to define a consumer's "human wealth".
2526

2627
The key idea that inspired Milton Friedman was that a person's non-financial income, i.e., his or
27-
her wages from working, could be viewed as a dividend stream from that person's ''human capital''
28-
and that standard asset-pricing formulas could be applied to compute a person's
29-
''non-financial wealth'' that capitalizes the earnings stream.
28+
her wages from working, can be viewed as a dividend stream from ''human capital''
29+
and that standard asset-pricing formulas can be applied to compute
30+
''non-financial wealth'' that capitalizes that earnings stream.
3031

3132
```{note}
3233
As we'll see in this QuantEcon lecture {doc}`equalizing difference model <equalizing_difference>`,
@@ -47,16 +48,15 @@ import matplotlib.pyplot as plt
4748
from collections import namedtuple
4849
```
4950

50-
5151
The model describes a consumer who lives from time $t=0, 1, \ldots, T$, receives a stream $\{y_t\}_{t=0}^T$ of non-financial income and chooses a consumption stream $\{c_t\}_{t=0}^T$.
5252

53-
We usually think of the non-financial income stream as coming from the person's salary from supplying labor.
53+
We usually think of the non-financial income stream as coming from the person's earnings from supplying labor.
5454

55-
The model takes a non-financial income stream as an input, regarding it as "exogenous" in the sense of not being determined by the model.
55+
The model takes a non-financial income stream as an input, regarding it as "exogenous" in the sense that it is determined outside the model.
5656

57-
The consumer faces a gross interest rate of $R >1$ that is constant over time, at which she is free to borrow or lend, up to limits that we'll describe below.
57+
The consumer faces a gross interest rate of $R >1$ that is constant over time, at which she is free to borrow or lend, up to limits that we'll describe below.
5858

59-
To set up the model, let
59+
Let
6060

6161
* $T \geq 2$ be a positive integer that constitutes a time-horizon.
6262
* $y = \{y_t\}_{t=0}^T$ be an exogenous sequence of non-negative non-financial incomes $y_t$.
@@ -130,7 +130,10 @@ By **smoother** we mean as close as possible to being constant over time.
130130
131131
The preference for smooth consumption paths that is built into the model gives it the name "consumption-smoothing model".
132132
133-
Let's dive in and do some calculations that will help us understand how the model works.
133+
We'll postpone verifying our claim that a constant consumption path is optimal when $\beta R=1$
134+
by comparing welfare levels that comes from a constant path with ones that involve non-constant paths.
135+
136+
Before doing that, let's dive in and do some calculations that will help us understand how the model works in practice when we provide the consumer with some different streams on non-financial income.
134137
135138
Here we use default parameters $R = 1.05$, $g_1 = 1$, $g_2 = 1/2$, and $T = 65$.
136139
@@ -147,7 +150,6 @@ def create_consumption_smoothing_model(R=1.05, g1=1, g2=1/2, T=65):
147150
β_seq, T)
148151
```
149152
150-
151153
## Friedman-Hall consumption-smoothing model
152154
153155
A key object is what Milton Friedman called "human" or "non-financial" wealth at time $0$:
@@ -285,7 +287,7 @@ def compute_optimal(model, a0, y_seq):
285287
286288
We use an example where the consumer inherits $a_0<0$.
287289
288-
This can be interpreted as a student debt.
290+
This can be interpreted as student debt with which the consumer begins his or her working life.
289291
290292
The non-financial process $\{y_t\}_{t=0}^{T}$ is constant and positive up to $t=45$ and then becomes zero afterward.
291293
@@ -308,17 +310,22 @@ print('check a_T+1=0:',
308310
The graphs below show paths of non-financial income, consumption, and financial assets.
309311
310312
```{code-cell} ipython3
311-
# Sequence Length
313+
# Sequence length
312314
T = cs_model.T
313315
314-
plt.plot(range(T+1), y_seq, label='non-financial income')
315-
plt.plot(range(T+1), c_seq, label='consumption')
316-
plt.plot(range(T+2), a_seq, label='financial wealth')
317-
plt.plot(range(T+2), np.zeros(T+2), '--')
316+
fig, axes = plt.subplots(1, 2, figsize=(12,5))
317+
318+
axes[0].plot(range(T+1), y_seq, label='non-financial income', lw=2)
319+
axes[0].plot(range(T+1), c_seq, label='consumption', lw=2)
320+
axes[1].plot(range(T+2), a_seq, label='financial wealth', color='green', lw=2)
321+
axes[0].set_ylabel(r'$c_t,y_t$')
322+
axes[1].set_ylabel(r'$a_t$')
323+
324+
for ax in axes:
325+
ax.plot(range(T+2), np.zeros(T+2), '--', lw=1, color='black')
326+
ax.legend()
327+
ax.set_xlabel(r'$t$')
318328
319-
plt.legend()
320-
plt.xlabel(r'$t$')
321-
plt.ylabel(r'$c_t,y_t,a_t$')
322329
plt.show()
323330
```
324331
@@ -356,15 +363,19 @@ def plot_cs(model, # consumption-smoothing model
356363
# Sequence length
357364
T = cs_model.T
358365
359-
# Generate plot
360-
plt.plot(range(T+1), y_seq, label='non-financial income')
361-
plt.plot(range(T+1), c_seq, label='consumption')
362-
plt.plot(range(T+2), a_seq, label='financial wealth')
363-
plt.plot(range(T+2), np.zeros(T+2), '--')
366+
fig, axes = plt.subplots(1, 2, figsize=(12,5))
367+
368+
axes[0].plot(range(T+1), y_seq, label='non-financial income', lw=2)
369+
axes[0].plot(range(T+1), c_seq, label='consumption', lw=2)
370+
axes[1].plot(range(T+2), a_seq, label='financial wealth', color='green', lw=2)
371+
axes[0].set_ylabel(r'$c_t,y_t$')
372+
axes[1].set_ylabel(r'$a_t$')
373+
374+
for ax in axes:
375+
ax.plot(range(T+2), np.zeros(T+2), '--', lw=1, color='black')
376+
ax.legend()
377+
ax.set_xlabel(r'$t$')
364378
365-
plt.legend()
366-
plt.xlabel(r'$t$')
367-
plt.ylabel(r'$c_t,y_t,a_t$')
368379
plt.show()
369380
```
370381
@@ -419,7 +430,7 @@ Now we simulate a $y$ sequence in which a person gets zero for 46 years, and the
419430
```{code-cell} ipython3
420431
# Late starter
421432
y_seq_late = np.concatenate(
422-
[np.zeros(46), np.ones(20)])
433+
[np.ones(46), 2*np.ones(20)])
423434
424435
plot_cs(cs_model, a0, y_seq_late)
425436
```
@@ -461,18 +472,16 @@ What happens when $\lambda$ is negative
461472
```{code-cell} ipython3
462473
λ = -0.95
463474
464-
geo_seq = λ ** np.arange(t_max) * y_0
475+
geo_seq = λ ** np.arange(t_max) * y_0 + 1
465476
y_seq_geo = np.concatenate(
466-
[geo_seq, np.zeros(20)])
477+
[geo_seq, np.ones(20)])
467478
468479
plot_cs(cs_model, a0, y_seq_geo)
469480
```
470481
471-
472482
### Feasible consumption variations
473483
474-
We promised to justify our claim that a constant consumption play $c_t = c_0$ for all
475-
$t$ is optimal.
484+
We promised to justify our claim that when $\beta R =1$ as Friedman assumed, a constant consumption play $c_t = c_0$ for all $t$ is optimal.
476485
477486
Let's do that now.
478487
@@ -554,7 +563,6 @@ def compute_variation(model, ξ1, ϕ, a0, y_seq, verbose=1):
554563
return cvar_seq
555564
```
556565
557-
558566
We visualize variations for $\xi_1 \in \{.01, .05\}$ and $\phi \in \{.95, 1.02\}$
559567
560568
```{code-cell} ipython3
@@ -591,10 +599,9 @@ plt.ylabel(r'$c_t$')
591599
plt.show()
592600
```
593601
594-
595602
We can even use the Python `np.gradient` command to compute derivatives of welfare with respect to our two parameters.
596603
597-
We are teaching the key idea beneath the **calculus of variations**.
604+
(We are actually discovering the key idea beneath the **calculus of variations**.)
598605
599606
First, we define the welfare with respect to $\xi_1$ and $\phi$
600607
@@ -615,7 +622,6 @@ def welfare_rel(ξ1, ϕ):
615622
welfare_vec = np.vectorize(welfare_rel)
616623
```
617624
618-
619625
Then we can visualize the relationship between welfare and $\xi_1$ and compute its derivatives
620626
621627
```{code-cell} ipython3
@@ -634,7 +640,6 @@ plt.xlabel(r'$\xi_1$')
634640
plt.show()
635641
```
636642
637-
638643
The same can be done on $\phi$
639644
640645
```{code-cell} ipython3
@@ -655,14 +660,12 @@ plt.show()
655660
656661
## Wrapping up the consumption-smoothing model
657662
658-
The consumption-smoothing model of Milton Friedman {cite}`Friedman1956` and Robert Hall {cite}`Hall1978`) is a cornerstone of modern macro that has important ramifications for the size of the Keynesian "fiscal policy multiplier" described briefly in
663+
The consumption-smoothing model of Milton Friedman {cite}`Friedman1956` and Robert Hall {cite}`Hall1978`) is a cornerstone of modern economics that has important ramifications for the size of the Keynesian "fiscal policy multiplier" that we described in
659664
QuantEcon lecture {doc}`geometric series <geom_series>`.
660665
661-
In particular, it **lowers** the government expenditure multiplier relative to one implied by
662-
the original Keynesian consumption function presented in {doc}`geometric series <geom_series>`.
666+
The consumption-smoothingmodel **lowers** the government expenditure multiplier relative to one implied by the original Keynesian consumption function presented in {doc}`geometric series <geom_series>`.
663667
664-
Friedman's work opened the door to an enlightening literature on the aggregate consumption function and associated government expenditure multipliers that
665-
remains active today.
668+
Friedman's work opened the door to an enlightening literature on the aggregate consumption function and associated government expenditure multipliers that remains active today.
666669
667670
668671
## Appendix: solving difference equations with linear algebra

0 commit comments

Comments
 (0)