🌱 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

  1. Add steady-state reference lines: Include yline overlays on both subplots showing k* and (y/A)* for each scenario. Calculate these using k_star = (s / (delta + n + g + n*g))^(1/(1-alpha)) and y_star = k_star^alpha.
  2. Print steady-state summary: Add a fprintf block that reports k* and (y/A)* for each scenario. This will provide quantitative backing for your interpretation.
  3. Expand interpretation: Explicitly answer both homework questions: (a) how higher n/g affect 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)