Week 10 Homework Feedback: Chiara Tombolini
Week 10 Homework Feedback: Chiara Tombolini
Overall Assessment
Grade: ✅ (Pass)
Correct results, but different method. You solved the model using Value Function Iteration (VFI) instead of the requested Endogenous Grid Method (EGM) or Coleman policy iteration. While VFI is a valid method and you implemented it correctly to get the right economic results, the assignment aimed to practice EGM/Coleman which are faster and more accurate.
Task-by-Task Check
Task 1: Quantifying Precautionary Savings
- Parameter & Grid Setup: ✅ Correct.
- Solution Method: ⚠️ Used VFI (
maxover grid) instead of EGM. - Deterministic Case: ✅ Solved.
- Stochastic Case: ✅ Solved.
- Simulation: ✅ Simulation logic is correct.
- Comparison: ✅ Premium calculated.
Task 2: The Role of Risk Aversion
- Sigma Variation: ✅ Implemented.
- Solving Sigma Cases: ✅ Solved.
- Policy Plot: ✅ Plotted.
- Simulation Comparison: ✅ Calculated.
- Interpretation: ✅ Correct.
Technical Implementation
- VFI vs EGM: Your
solve_modelfunction iterates onVand finds the policy by maximizingu + beta * EV. This is VFI. - Correctness: The VFI implementation is correct.
- Code Structure: The code is clean and readable.
Visual Output
- Figures are generated correctly.
Suggestions for Improvement
- Method Selection: Try implementing EGM next time. It works by inverting the Euler equation $u’(c) = \beta E[R u’(c’)]$ to find $c$ (and thus $k$) directly, avoiding the search for the maximum over the grid.
Summary
10/11 tasks correct (method choice variation). Correct work.