@@ -125,15 +125,15 @@ time $0$ Ramsey planner takes these
125125effects into account in designing a plan of government actions for
126126$t \geq 0$.
127127
128- ## Setting
128+ ## Decisions
129129
130130### The Household’s Problem
131131
132132A representative household faces a nonnegative value of money sequence
133133$\vec q$ and sequences $\vec y, \vec x$ of income and total
134134tax collections, respectively.
135135
136- The household chooses nonnegative
136+ Facing vector $\vec q$ as a price taker, the representative household chooses nonnegative
137137sequences $\vec c, \vec M$ of consumption and nominal balances,
138138respectively, to maximize
139139
@@ -174,8 +174,8 @@ The household carries real balances out of a period equal to $m_t = q_t M_t$.
174174Inequality {eq}` eqn_chang_ramsey2 ` is the household’s time $t$ budget constraint.
175175
176176It 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 .
179179
180180Equation {eq}` eqn_chang_ramsey3 ` imposes an exogenous upper bound
181181$\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
189189[ \underline \pi, \overline \pi] $, where
190190$0 < \underline \pi < 1 < { 1 \over \beta } \leq \overline \pi$.
191191
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
194199
195200$$
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,
197208$$
198209
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+
199221which by using the definitions of $m_t$ and $h_t$ can also
200222be expressed as
201223
@@ -205,7 +227,8 @@ be expressed as
205227-x_t = m_t (1-h_t)
206228```
207229
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
209232imply that $x_t \in X \equiv [ (\underline \pi -1)\bar m,
210233(\overline \pi -1) \bar m] $.
211234
@@ -221,10 +244,27 @@ assumption about outcomes for per capita output:
221244y_t = f(x_t),
222245```
223246
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**
228268
229269Calvo's and Chang's purpose is not to model the causes of tax distortions in
230270any detail but simply to summarize
@@ -855,7 +895,7 @@ We have created a Python class that solves the model assuming the
855895following functional forms:
856896
857897$$
858- u(c) = log(c)
898+ u(c) = \ log(c)
859899$$
860900
861901$$
0 commit comments