There was an error while loading. Please reload this page.
1 parent 648deb5 commit 99822c1Copy full SHA for 99822c1
lectures/olg.md
@@ -228,7 +228,7 @@ Let's define a function `k_next` that finds the value of $k_{t+1}$.
228
229
```{code-cell} ipython3
230
def k_next(model, k):
231
- return optimize.newton(solve_for_k_2, k, args=(model, k))
+ return optimize.newton(solve_for_k, k, args=(model, k))
232
```
233
234
0 commit comments