@@ -125,15 +125,15 @@ time $0$ Ramsey planner takes these
125
125
effects into account in designing a plan of government actions for
126
126
$t \geq 0$.
127
127
128
- ## Setting
128
+ ## Decisions
129
129
130
130
### The Household’s Problem
131
131
132
132
A representative household faces a nonnegative value of money sequence
133
133
$\vec q$ and sequences $\vec y, \vec x$ of income and total
134
134
tax collections, respectively.
135
135
136
- The household chooses nonnegative
136
+ Facing vector $\vec q$ as a price taker, the representative household chooses nonnegative
137
137
sequences $\vec c, \vec M$ of consumption and nominal balances,
138
138
respectively, to maximize
139
139
@@ -174,8 +174,8 @@ The household carries real balances out of a period equal to $m_t = q_t M_t$.
174
174
Inequality {eq}` eqn_chang_ramsey2 ` is the household’s time $t$ budget constraint.
175
175
176
176
It tells how real balances $q_t M_t$ carried out of period $t$ depend
177
- on income, consumption, taxes, and real balances $q_t M_ {t-1}$
178
- carried into the period.
177
+ on real balances $q_t M_ {t-1}$
178
+ carried into period $t$, income, consumption, taxes .
179
179
180
180
Equation {eq}` eqn_chang_ramsey3 ` imposes an exogenous upper bound
181
181
$\bar m$ on the household's choice of real balances, where
@@ -189,13 +189,35 @@ $h_t \equiv {M_{t-1}\over M_t} \in \Pi \equiv
189
189
[ \underline \pi, \overline \pi] $, where
190
190
$0 < \underline \pi < 1 < { 1 \over \beta } \leq \overline \pi$.
191
191
192
- The government faces a sequence of budget constraints with time
193
- $t$ component
192
+ The government purchases no goods.
193
+
194
+ It taxes only to acquire paper currency that it will withdraw from circulation (e.g., by burning it).
195
+
196
+ Let $p_t $ be the price level at time $t$, measured as time $t$ dollars per unit of the consumption good.
197
+
198
+ Evidently, the value of paper currency meassured in units of the consumption good at time $t$ is
194
199
195
200
$$
196
- -x_t = q_t (M_t - M_{t-1})
201
+ q_t = \frac{1}{p_t} .
202
+ $$
203
+
204
+ The government faces a sequence of budget constraints with time $t$ component
205
+
206
+ $$
207
+ x_t + \frac{M_{t} - M_{t-1}}{p_t} = 0,
197
208
$$
198
209
210
+ where $x_t$ is the real value of revenue that the government raises from taxes and $\frac{M_ {t} - M_ {t-1}}{p_t}$ is
211
+ the real value of revenue that the government raises by printing new paper currency.
212
+
213
+ Evidently, this budget constraint can be rewritten as
214
+
215
+
216
+
217
+ $$
218
+ -x_t = q_t (M_t - M_{t-1})
219
+ $$
220
+
199
221
which by using the definitions of $m_t$ and $h_t$ can also
200
222
be expressed as
201
223
@@ -205,7 +227,8 @@ be expressed as
205
227
-x_t = m_t (1-h_t)
206
228
```
207
229
208
- The restrictions $m_t \in [ 0, \bar m] $ and $h_t \in \Pi$ evidently
230
+
231
+ The restrictions $m_t \in [ 0, \bar m] $ and $h_t \in \Pi = [ \underline \pi, \overline \pi] $ evidently
209
232
imply that $x_t \in X \equiv [ (\underline \pi -1)\bar m,
210
233
(\overline \pi -1) \bar m] $.
211
234
@@ -221,10 +244,27 @@ assumption about outcomes for per capita output:
221
244
y_t = f(x_t),
222
245
```
223
246
224
- where $f: \mathbb{R}\rightarrow \mathbb{R}$ satisfies $f(x) > 0$,
225
- is twice continuously differentiable, $f''(x) < 0$, and
226
- $f(x) = f(-x)$ for all $x \in
227
- \mathbb{R}$, so that subsidies and taxes are equally distorting.
247
+ where $f: \mathbb{R}\rightarrow \mathbb{R}$ satisfies $f(x) > 0$, $f(x)$
248
+ is twice continuously differentiable, $f''(x) < 0$, $f'(0) = 0$, and
249
+ $f(x) = f(-x)$ for all $x \in \mathbb{R}$, so that subsidies and taxes are equally distorting.
250
+
251
+ ** Example parameterizations**
252
+
253
+ In some of our Python code deployed later in this lecture, we'll assume the following functional forms:
254
+
255
+ $$
256
+ u(c) = \log(c)
257
+ $$
258
+
259
+ $$
260
+ v(m) = \frac{1}{500}(m \bar m - 0.5m^2)^{0.5}
261
+ $$
262
+
263
+ $$
264
+ f(x) = 180 - (0.4x)^2
265
+ $$
266
+
267
+ ** The tax distortion function**
228
268
229
269
Calvo's and Chang's purpose is not to model the causes of tax distortions in
230
270
any detail but simply to summarize
@@ -855,7 +895,7 @@ We have created a Python class that solves the model assuming the
855
895
following functional forms:
856
896
857
897
$$
858
- u(c) = log(c)
898
+ u(c) = \ log(c)
859
899
$$
860
900
861
901
$$
0 commit comments