Skip to content

Commit 4f0d3eb

Browse files
committed
update cass_fiscal
1 parent 133ecac commit 4f0d3eb

File tree

1 file changed

+18
-20
lines changed

1 file changed

+18
-20
lines changed

lectures/cass_fiscal.md

Lines changed: 18 additions & 20 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ Therefore, to compute an equilibrium allocation and price system, we solve a sys
2727

2828
We present two ways to solve the model:
2929

30-
- The first method is called shooting algorithm;
30+
- The first method is shooting algorithm in the same spirit as in {doc}`cass_koopmans_2`.
3131

32-
- The second method is applying a root-finding algorithm to minimize the residuals derived from the first-order conditions.
32+
- The second method is a root-finding algorithm to minimize the residuals derived from the first-order conditions.
3333

3434
We will use the following imports
3535

@@ -88,7 +88,7 @@ under the budget constraint {eq}`eq:house_budget`.
8888
8989
### Technology
9090
91-
The economy's production technology is defined by:
91+
The technology is defined by:
9292
9393
$$
9494
g_t + c_t + x_t \leq F(k_t, n_t),
@@ -106,15 +106,13 @@ $$
106106
k_{t+1} = (1 - \delta)k_t + x_t,
107107
$$
108108
109-
where
110-
111-
- $\delta \in (0, 1)$ is depreciation rate.
109+
where $\delta \in (0, 1)$ is depreciation rate.
112110
113111
It is sometimes convenient to eliminate $x_t$ from {eq}`eq:tech_capital` to write it
114112
as
115113
116114
$$
117-
g_t + c_t + k_{t+1} \leq F(k_t, n_t) + (1 - \delta)k_t
115+
g_t + c_t + k_{t+1} \leq F(k_t, n_t) + (1 - \delta)k_t.
118116
$$
119117
120118
### Components of a competitive equilibrium
@@ -131,7 +129,7 @@ A **price system** is a triple of sequences $\{q_t, \eta_t, w_t\}_{t=0}^\infty$,
131129
- $\eta_t$ is the pretax price at time $t$ that the household receives from the firm for renting capital at time $t$, and
132130
- $w_t$ is the pretax price at time $t$ that the household receives for renting labor to the firm at time $t$.
133131
134-
The prices $w_t$ and $\eta_t$ are expressed in terms of time $t$ goods, while $q_t$ is expressed in terms of the numeraire at time 0 as in {doc}`cass_koopmans_2`
132+
The prices $w_t$ and $\eta_t$ are expressed in terms of time $t$ goods, while $q_t$ is expressed in terms of the numeraire at time 0 as in {doc}`cass_koopmans_2`.
135133
136134
Government is the main feature that distinguishes this lecture from
137135
{doc}`cass_koopmans_2`.
@@ -154,13 +152,13 @@ We include all of these taxes because, like {cite}`hall1971dynamic`,
154152
they allow us to analyze how the
155153
various taxes distort production and consumption decisions.
156154
157-
In the [experiment section](cf:experiments), we shall see how variations in government tax plan affects
155+
In the [experiment section](cf:experiments), we shall see how variations in government tax plan affect
158156
the transition path and equilibrium.
159157
160158
### Budget constraints
161159
162-
Now we have all the elements to write down budget constraints for representative household
163-
and government
160+
Now we have all the elements to write down budget constraints for the representative household
161+
and government.
164162
165163
Household maximizes {eq}`eq:utility` under the budget constraint:
166164
@@ -223,9 +221,11 @@ The household's budget constraint {eq}`eq:house_budget` must be bounded in equil
223221
224222
Specifically, for $t \geq 1$, the terms multiplying $k_t$ must equal zero.
225223
226-
If they were strictly positive (negative), the household could arbitrarily increase (decrease) the right-hand side of {eq}`eq:house_budget` by selecting an arbitrarily large positive (negative) $k_t$, leading to unbounded profit or arbitrage opportunities.
224+
If they were strictly positive (negative), the household could arbitrarily increase (decrease) the right-hand side of {eq}`eq:house_budget` by selecting an arbitrarily large positive (negative) $k_t$, leading to unbounded profit or arbitrage opportunities:
227225
228-
For strictly positive terms, the household could purchase large capital stocks $k_t$ and profit from their rental services and undepreciated value. For strictly negative terms, the household could engage in "short selling" synthetic units of capital. Both cases would make {eq}`eq:house_budget` unbounded.
226+
- For strictly positive terms, the household could purchase large capital stocks $k_t$ and profit from their rental services and undepreciated value.
227+
228+
- For strictly negative terms, the household could engage in "short selling" synthetic units of capital. Both cases would make {eq}`eq:house_budget` unbounded.
229229
230230
Hence, by setting the terms multiplying $k_t$ to $0$ we have the non-arbitrage condition:
231231
@@ -463,7 +463,7 @@ def compute_R_bar_path(shocks, k_path, model, S=100):
463463
*One-period discount factor:*
464464
465465
$$
466-
R^{-1}_{t, t+1} = \frac{q_t}{q_{t-1}} = m_{t, t+1} = \beta \frac{u'(c_{t+1})}{u'(c_t)} \frac{(1 + \tau_{ct})}{(1 + \tau_{ct+1})}
466+
R^{-1}_{t, t+1} = \frac{q_{t+1}}{q_{t}} = m_{t, t+1} = \beta \frac{u'(c_{t+1})}{u'(c_t)} \frac{(1 + \tau_{ct})}{(1 + \tau_{ct+1})}
467467
$$ (eq:equil_bigR)
468468
469469
@@ -473,7 +473,7 @@ $$
473473
r_{t, t+1} \equiv R_{t, t+1} - 1 = (1 - \tau_{k, t+1})(f'(k_{t+1}) - \delta)
474474
$$ (eq:equil_r)
475475
476-
By {eq}`eq:equil_bigR`, we have
476+
By {eq}`eq:equil_bigR` and $r_{t, t+1} = - \ln(\frac{q_{t+1}}{q_t})$, we have
477477
478478
$$
479479
R_{t, t+s} = e^{s \cdot r_{t, t+s}}.
@@ -560,7 +560,7 @@ def f_prime(k, model):
560560
561561
## Computation
562562
563-
In the following sections, we will apply two methods to solve the model: the shooting algorithm and residual minimization using the Euler equation ({eq}`eq:diff_second`) and feasibility condition ({eq}`eq:feasi_capital`).
563+
In the following sections, we will apply two methods to solve the model: the shooting algorithm and residual minimization using the Euler equation {eq}`eq:diff_second` and feasibility condition {eq}`eq:feasi_capital`.
564564
565565
### Method 1: Shooting Algorithm
566566
@@ -1003,10 +1003,8 @@ At $t = 0$, the term structure of interest rates exhibits a "U-shaped" pattern:
10031003
- It declines until maturity at $s = 10$.
10041004
- After $s = 10$, it increases for longer maturities.
10051005
1006-
This pattern corresponds to the pattern of consumption growth in the first two figures, which:
1007-
1008-
- Declines at an increasing rate until $t = 10$.
1009-
- Then declines at a decreasing rate afterward.
1006+
This pattern corresponds to the pattern of consumption growth in the first two figures,
1007+
which declines at an increasing rate until $t = 10$ and then declines at a decreasing rate afterward.
10101008
10111009
+++
10121010

0 commit comments

Comments
 (0)