Skip to content

Commit 8befe06

Browse files
Tom's edits of tax smoothing lecture, Feb 3
1 parent 90a9982 commit 8befe06

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

lectures/tax_smooth.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ kernelspec:
1919
This is a sister lecture to our lecture on {doc}`consumption-smoothing <cons_smooth>`.
2020

2121

22-
By renaming variables, we obtain a a version of a model "tax-smoothing model" that Robert Barro {cite}`Barro1979` used to explain why governments sometimes choose not to balance their budgets every period but instead use issue debt to smooth tax rates over time.
22+
By renaming variables, we obtain a version of a model "tax-smoothing model" that Robert Barro {cite}`Barro1979` used to explain why governments sometimes choose not to balance their budgets every period but instead use issue debt to smooth tax rates over time.
2323

2424
The government chooses a tax collection path that minimizes the present value of its costs of raising revenue.
2525

@@ -233,7 +233,7 @@ $$
233233
234234
Use the system of equations {eq}`eq:B_t` for $t=0, \ldots, S$ to compute a path $B$ of government debt.
235235
236-
To do this, we translate that system of difference equations into a single matrix equation as follows:
236+
To do this, we transform that system of difference equations into a single matrix equation as follows:
237237
238238
$$
239239
\begin{bmatrix}
@@ -398,7 +398,7 @@ We'll make $W_0$ big - positive to indicate a spending surge (like a war or disa
398398
```{code-cell} ipython3
399399
# Spending surge W_0 = 2.5
400400
G_seq_pos = np.concatenate([np.ones(21), np.array([2.5]),
401-
np.ones(24), np.zeros(20)])
401+
np.ones(24), np.ones(20)])
402402
403403
plot_ts(tax_model, B0, G_seq_pos)
404404
```
@@ -463,7 +463,7 @@ Now we show the behavior when $\lambda = 0.95$ (declining expenditures)
463463
λ = 0.95
464464
geo_seq = λ ** np.arange(t_max) * G_0
465465
G_seq_geo = np.concatenate(
466-
[geo_seq, np.zeros(20)])
466+
[geo_seq, λ ** t_max * np.ones(20)])
467467
468468
plot_ts(tax_model, B0, G_seq_geo)
469469
```

0 commit comments

Comments
 (0)