Skip to content

Commit 2cb3ac3

Browse files
committed
[solow] Update editorial suggestions
1 parent c879389 commit 2cb3ac3

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

lectures/solow.md

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -100,17 +100,15 @@ given an exogenous initial capital stock $k_0$.
100100

101101
## A graphical perspective
102102

103-
To understand the dynamics of the sequence $(k_t)_{t \geq 0}$ we use a 45
104-
degree diagram.
103+
To understand the dynamics of the sequence $(k_t)_{t \geq 0}$ we use a 45-degree diagram.
105104

106105
To do so, we first
107106
need to specify the functional form for $f$ and assign values to the parameters.
108107

109108
We choose the Cobb--Douglas specification $f(k) = A k^\alpha$ and set $A=2.0$,
110109
$\alpha=0.3$, $s=0.3$ and $\delta=0.4$.
111110

112-
The function $g$ from {eq}`solow` is then plotted, along with the 45
113-
degree line.
111+
The function $g$ from {eq}`solow` is then plotted, along with the 45-degree line.
114112

115113

116114
Let's define the constants.
@@ -128,7 +126,7 @@ def g(A, s, alpha, delta, k):
128126
return A * s * k**alpha + (1 - delta) * k
129127
```
130128

131-
Let's plot the 45 degree diagram of $g$.
129+
Let's plot the 45-degree diagram of $g$.
132130

133131
```{code-cell} ipython3
134132
def plot45(kstar=None):
@@ -145,7 +143,7 @@ def plot45(kstar=None):
145143
146144
lb = r'$g(k) = sAk^{\alpha} + (1 - \delta)k$'
147145
ax.plot(xgrid, g_values, lw=2, alpha=0.6, label=lb)
148-
ax.plot(xgrid, xgrid, 'k-', lw=1, alpha=0.7, label='45')
146+
ax.plot(xgrid, xgrid, 'k-', lw=1, alpha=0.7, label='$45^{\circ}$')
149147
150148
if kstar:
151149
fps = (kstar,)
@@ -175,15 +173,15 @@ def plot45(kstar=None):
175173
plot45()
176174
```
177175

178-
Suppose, at some $k_t$, the value $g(k_t)$ lies strictly above the 45 degree line.
176+
Suppose, at some $k_t$, the value $g(k_t)$ lies strictly above the 45-degree line.
179177

180178
Then we have $k_{t+1} = g(k_t) > k_t$ and capital per worker rises.
181179

182180
If $g(k_t) < k_t$ then capital per worker falls.
183181

184182
If $g(k_t) = k_t$, then we are at a **steady state** and $k_t$ remains constant.
185183

186-
(A steady state of the model is a [fixed point](https://en.wikipedia.org/wiki/Fixed_point_(mathematics)) of the mapping $g$.)
184+
(A [steady state](https://intro.quantecon.org/scalar_dynam.html#steady-states) of the model is a [fixed point](https://en.wikipedia.org/wiki/Fixed_point_(mathematics)) of the mapping $g$.)
187185

188186
From the shape of the function $g$ in the figure, we see that
189187
there is a unique steady state in $(0, \infty)$.
@@ -198,7 +196,7 @@ If initial capital is below $k^*$, then capital increases over time.
198196

199197
If initial capital is above this level, then the reverse is true.
200198

201-
Let's plot the 45 degree diagram to show the $k^*$ in the plot.
199+
Let's plot the 45-degree diagram to show the $k^*$ in the plot.
202200

203201
```{code-cell} ipython3
204202
kstar = ((s * A) / delta)**(1/(1 - alpha))
@@ -209,7 +207,7 @@ plot45(kstar)
209207
From our graphical analysis, it appears that $(k_t)$ converges to $k^*$, regardless of initial capital
210208
$k_0$.
211209

212-
This is a form of global stability.
210+
This is a form of [global stability](https://intro.quantecon.org/scalar_dynam.html#global-stability).
213211

214212

215213
The next figure shows three time paths for capital, from
@@ -387,6 +385,8 @@ linear differential equation
387385
x'_t = (1-\alpha) (sA - \delta x_t)
388386
```
389387

388+
To solve this equation, we need the [first ODE](https://math.libretexts.org/Bookshelves/Calculus/Calculus_(Guichard)/17%3A_Differential_Equations/17.01%3A_First_Order_Differential_Equations).
389+
390390
This equation has the exact solution
391391

392392
$$

0 commit comments

Comments
 (0)