You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
From the above equation, we see that in order to find $k_{t+1}$ we need some root-finding algorithm that solves for $k_{t+1}$ given that we have $k_{t}$.
215
213
214
+
And suppose, $k_{t+1} = g(k_t)$
215
+
216
+
216
217
So for that we will use [scipy.optimize.newton](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.newton.html#scipy.optimize.newton).
Suppose, at some $k_t$, the value $g(k_t)$ lies strictly above the 45 degree line.
280
+
281
+
Then we have $k_{t+1} = g(k_t) > k_t$ and capital per worker rises.
282
+
283
+
If $g(k_t) < k_t$ then capital per worker falls.
284
+
285
+
If $g(k_t) = k_t$, then we are at a **steady state** and $k_t$ remains constant.
286
+
287
+
(A steady state of the model is a [fixed point](https://en.wikipedia.org/wiki/Fixed_point_(mathematics)) of the mapping $g$.)
288
+
289
+
From the shape of the function $g$ in the figure, we see that
290
+
there is a unique steady state in $(0, \infty)$.
291
+
292
+
+++
293
+
277
294
Let's find the value of $k^*$.
278
295
279
-
By observing the above graph, we can see that the value of $k^*$ roughly falls between $(0.15, 0.2)$. Using this information, we will again use [scipy.optimize.newton](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.newton.html#scipy.optimize.newton).
296
+
By observing the above graph, we can see that the value of $k^*$ roughly falls between $(0.15, 0.2)$.
297
+
Using this information, we will again use [scipy.optimize.newton](https://docs.scipy.org/doc/scipy/reference/generated/scipy.optimize.newton.html#scipy.optimize.newton).
0 commit comments