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
This commit restructures the cake eating lecture series into a more coherent "Introduction to Optimal Savings" section with clearer naming and terminology.
Changes:
- Created new "Introduction to Optimal Savings" section in table of contents
- Renamed all 6 lectures with "os" prefix for consistency:
* cake_eating.md → os.md (Optimal Savings I: Cake Eating)
* cake_eating_numerical.md → os_numerical.md (Optimal Savings II: Numerical Cake Eating)
* cake_eating_stochastic.md → os_stochastic.md (Optimal Savings III: Stochastic Returns)
* cake_eating_time_iter.md → os_time_iter.md (Optimal Savings IV: Time Iteration)
* cake_eating_egm.md → os_egm.md (Optimal Savings V: The Endogenous Grid Method)
* cake_eating_egm_jax.md → os_egm_jax.md (Optimal Savings VI: EGM with JAX)
- Updated all lecture titles to use "Optimal Savings I-VI" naming convention
- Replaced "cake eating" terminology with "optimal savings" throughout all lectures
- Updated terminology in os_stochastic.md: "cake" → "wealth/harvest" to better reflect stochastic growth
- Updated all cross-references across the codebase to use new filenames
- Made cross-references robust to future title changes by using {doc}`filename` format
🤖 Generated with [Claude Code](https://claude.com/claude-code)
Co-Authored-By: Claude <noreply@anthropic.com>
Copy file name to clipboardExpand all lines: lectures/ifp.md
+3-3Lines changed: 3 additions & 3 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -45,14 +45,14 @@ It is an essential sub-problem for many representative macroeconomic models
45
45
* {cite}`Huggett1993`
46
46
* etc.
47
47
48
-
It is related to the decision problem in the {doc}`cake eating model <cake_eating_stochastic>` but differs in significant ways.
48
+
It is related to the decision problem in {doc}`os_stochastic` but differs in significant ways.
49
49
50
50
For example,
51
51
52
52
1. The choice problem for the agent includes an additive income term that leads to an occasionally binding constraint.
53
53
2. Shocks affecting the budget constraint are correlated, forcing us to track an extra state variable.
54
54
55
-
To solve the model we will use the endogenous grid method, which we found to be {doc}`fast and accurate <cake_eating_egm_jax>`in our investigation of cake eating.
55
+
To solve the model we will use the endogenous grid method, which we found to be fast and accurate in {doc}`os_egm_jax`.
56
56
57
57
We'll need the following imports:
58
58
@@ -256,7 +256,7 @@ We solve for the optimal consumption policy using time iteration and the
256
256
endogenous grid method.
257
257
258
258
Readers unfamiliar with the endogenous grid method should review the discussion
Copy file name to clipboardExpand all lines: lectures/lqcontrol.md
+1-1Lines changed: 1 addition & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -57,7 +57,7 @@ In reading what follows, it will be useful to have some familiarity with
57
57
58
58
* matrix manipulations
59
59
* vectors of random variables
60
-
* dynamic programming and the Bellman equation (see for example {doc}`this lecture <intro:short_path>` and {doc}`this lecture <cake_eating_stochastic>`)
60
+
* dynamic programming and the Bellman equation (see for example {doc}`this lecture <intro:short_path>` and {doc}`os_stochastic`)
61
61
62
62
For additional reading on LQ control, see, for example,
0 commit comments