Week 8 Homework Feedback: Michele Nascia
Week 8 Homework Feedback: Michele Nascia
Assignment: Dynamic Programming & Value Function Iteration with Population Growth
Week: 8
Date: Week 8 Assessment
✅ Overall Assessment
Result: ✅ More than 50% Correct
Michele’s solution implements the ((1+n)) constraint properly, runs VFI cleanly, simulates capital/consumption paths, and includes comparative policy experiments for (\beta) and (\alpha) with clear interpretation. Missing items: no stored V-history / convergence plot, no transition-path comparisons for the alternative calibrations, and the final-period consumption is computed with (k_T) instead of (k’(k_T)). 11/15 tasks fully correct (≈73%).
Task-by-Task Notes
- Consumption matrix with (1+n) — ✅ (line 21)
- Value Function Iteration — ✅ (lines 31-39)
- Convergence history storage — ❌
- Policy extraction — ✅ (line 41)
- Policy plot + 45° — ✅ (lines 43-57)
- Capital simulation — ✅ (lines 61-74)
- Consumption simulation — ⚠️ final period uses (k_T) for both current and next period (line 77); should use (k’(k_T))
- Capital path plot — ✅ (lines 80-84)
- Consumption path plot — ✅ (lines 86-90)
- Parameter experiments — ✅ ((\beta) and (\alpha) loops)
- Policy functions for calibrations — ✅ (figures
policy_beta_experiments.png,policy_alpha_experiments.png) - Capital paths for calibrations — ❌ (only baseline transition plotted)
- Value function convergence plot — ❌
- Figure saving — ✅ (
exportgraphics) - Interpretation comments — ✅ (inline commentary on (\beta) and (\alpha))
Suggestions
- Terminal consumption: replace line 77 with
k_next_T = interp1(kgrid, k_policy, kpath(T), 'linear','extrap'); cpath(T) = kpath(T)^alpha + (1-delta)*kpath(T) - (1+n)*k_next_T; - Convergence figure: store
V_history(:,end+1)=V;every few iterations during VFI and plot the snapshots as requested in the brief. - Transition comparisons: after each parameter experiment, simulate (k_t) (and optionally (c_t)) under the alternative policy so you can show how dynamics respond to (\beta) or (\alpha).
Summary
Strong, well-commented work that nails the core Week 8 model and comparative statics. Add the convergence figure, fix the terminal consumption calculation, and include transition-path comparisons for the alternative calibrations to complete the rubric.