π± Week 7 Homework β Feedback
π± Week 7 Homework β Feedback
Student: Bakytkul Baltabay
Assignment: Solow Model with Technological & Population Growth
β Overall Assessment
Result: β More than 50% Correct
Good submission with correct helper function and proper parameter calibration. The code runs cleanly and produces clear subplot figures. The main gaps are: (1) missing steady-state reference lines on both plots, (2) no printed steady-state summary, and (3) interpretation is present but could be more explicit about both homework questions. The economic discussion addresses steady-state effects but doesnβt clearly discuss 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) |
β | Stored in params. |
| 7 | Reuses simulation outputs for later steps | β οΈ | Re-runs function for plotting. |
| 8 | Plot k_t for the three scenarios |
β | Top subplot 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 |
β | Bottom subplot implemented. |
| 11 | Add steady-state reference lines on y_t/A_t plot |
β | Missing yline overlays. |
| 12 | Save figures to Figures/ (PNG/PDF) |
β | Saved to Figures/ as PNG. |
| 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 but convergence speed discussion is incomplete. |
| 15 | Code hygiene (comments, no cd, folder guard) |
β | Clean structure, no absolute paths. |
Score: 9/15 tasks fully correct, 1/15 partial, 5/15 missing β β
π Evidence & Highlights
26:44:docs/week7/Homework submissions/week7homework Bakytkul Baltabay/week_7homework.m
subplot(2,1,1);
plot(1:T, k, 'LineWidth', 1.6, 'DisplayName', sprintf('n=%.02f, g=%.02f', n, g));
...
subplot(2,1,2);
plot(1:T, y ./ A, 'LineWidth', 1.6, 'DisplayName', sprintf('n=%.02f, g=%.02f', n, g));
π‘ Suggestions for Improvement
- Add steady-state reference lines: Include
ylineoverlays on both subplots 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. - Expand interpretation: Explicitly answer both homework questions: (a) how higher
n/gaffect steady-state levels per effective worker, and (b) what happens to convergence speed. Your current comments address (a) but need more detail on (b).
π§Ύ Summary
Solid implementation with correct economics. Adding steady-state overlays, a quantitative summary, and expanding the interpretation will complete the submission.
Grade: β (More than 50% correct)