π± Week 7 Homework β Feedback
π± Week 7 Homework β Feedback
Student: Giovanni Rampello
Assignment: Solow Model with Technological & Population Growth
β οΈ Overall Assessment
Result: β οΈ Partial (<50% Correct)
The submission includes the challenge exercise (population growth only) and the homework exercise (with technology). The homework section has correct helper function calls and proper parameter calibration. However, several key requirements are missing: (1) no steady-state reference lines on either plot, (2) no printed steady-state summary, and (3) figures not saved. The interpretation is present but could be more explicit about convergence speed.
π Task-by-Task Checklist
| # | Requirement | Status | Notes |
|---|---|---|---|
| 1 | Separate simulate_growth_tech.m helper with correct signature |
β | Provided with four outputs. |
| 2 | Helper preallocates arrays and final values | β | Column vectors, final period handled. |
| 3 | Law of motion divides by (1+n)(1+g) |
β | Correct implementation. |
| 4 | Technology path updates with (1+g) |
β | Included in loop. |
| 5 | Main script sets required parameters (Ξ±, Ξ΄, s, T=80, k0, A0) |
β | Matches homework specification. |
| 6 | Scenario matrix includes (0,0), (0.01,0.02), (0.02,0.03) |
β | Three separate function calls. |
| 7 | Reuses simulation outputs for later steps | β | Stores results in variables (k1, k2, k3, etc.). |
| 8 | Plot k_t for the three scenarios |
β | Figure shows all paths. |
| 9 | Add steady-state reference lines on k_t plot |
β | Missing yline overlays. |
| 10 | Plot y_t/A_t for the three scenarios |
β | Figure implemented. |
| 11 | Add steady-state reference lines on y_t/A_t plot |
β | Missing yline overlays. |
| 12 | Save figures to Figures/ (PNG/PDF) |
β | Figures not saved. |
| 13 | Provide steady-state summary (table or print) | β | No numerical output of k*/(y/A)*. |
| 14 | Interpretation answers both homework questions | β οΈ | Addresses steady-state effects well but convergence speed discussion is incomplete. |
| 15 | Code hygiene (comments, no cd, folder guard) |
β | Clean structure, no absolute paths. |
Score: 8/15 tasks fully correct, 1/15 partial, 6/15 missing β β οΈ
π Evidence & Highlights
88:108:docs/week7/Homework submissions/Homework_week7_Giovanni_Rampello Giovanni Rampello/week7_homework_solution.m
figure;
plot(1:T, k1, 'LineWidth', 1.5); hold on;
plot(1:T, k2, 'LineWidth', 1.5);
plot(1:T, k3, 'LineWidth', 1.5);
...
figure;
plot(1:T, y1./A1, 'LineWidth', 1.5); hold on;
plot(1:T, y2./A2, 'LineWidth', 1.5);
plot(1:T, y3./A3, 'LineWidth', 1.5);
π‘ Suggestions for Improvement
- Add steady-state reference lines: Include
ylineoverlays on both plots showingk*and(y/A)*for each scenario. Calculate these usingk_star = (s / (delta + n + g + n*g))^(1/(1-alpha))andy_star = k_star^alpha. - Print steady-state summary: Add a
fprintfblock that reportsk*and(y/A)*for each scenario. This will provide quantitative backing for your interpretation. - Save figures to
Figures/directory: Create aFigures/folder (withmkdirguard) and save both figures there usingexportgraphics()orprint(). - Expand convergence speed discussion: Your interpretation mentions that convergence is βfasterβ but doesnβt explain the mechanism. Please elaborate on how higher effective depreciation (from
nandg) creates a stronger restoring force.
π§Ύ Summary
The core simulation is correct, but several key deliverables are missing. Adding steady-state overlays, a quantitative summary, saving figures, and expanding the convergence speed discussion will bring this submission up to passing level.
Grade: β οΈ (Partial <50% correct)