๐ŸŒฑ Week 7 Homework โ€” Feedback

Student: Sofia Bruga
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 plots are clear and include steady-state reference lines for capital. The main gaps are: (1) missing steady-state lines on the y/A plot, (2) figures saved in the root directory instead of Figures/, and (3) no printed steady-state summary. The interpretation is concise and accurate.


๐Ÿ” 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 cases.
7 Reuses simulation outputs for later steps โš ๏ธ Re-runs function for second plot.
8 Plot k_t for the three scenarios โœ… Figure 1 shows all paths.
9 Add steady-state reference lines on k_t plot โœ… Uses yline with colored dashes.
10 Plot y_t/A_t for the three scenarios โœ… Figure 2 implemented.
11 Add steady-state reference lines on y_t/A_t plot โŒ Missing yline overlays.
12 Save figures to Figures/ (PNG/PDF) โš ๏ธ Saves to root directory, not Figures/.
13 Provide steady-state summary (table or print) โœ… Prints k* and (y/A)* in loop.
14 Interpretation answers both homework questions โœ… Clear discussion of steady-state effects and convergence.
15 Code hygiene (comments, no cd, folder guard) โœ… Clean structure, no absolute paths.

Score: 11/15 tasks fully correct, 2/15 partial, 2/15 missing โ†’ โœ…


๐Ÿ“ˆ Evidence & Highlights

23:35:docs/week7/Homework submissions/Homework7week_SofiaBruga Sofia Bruga/Homework7week.m k_star = (s / (delta + n + g + n*g))^(1 / (1 - alpha)); y_star = k_star^alpha; ... yline(k_star, '--', 'Color', colors{j}, 'HandleVisibility','off');


๐Ÿ’ก Suggestions for Improvement

  1. Add steady-state lines to the y/A plot: Include yline overlays showing (y/A)* = k*^alpha for each scenario on Figure 2, matching what you did for the capital plot.
  2. Save figures to Figures/ directory: Create a Figures/ folder (with mkdir guard) and save both PNG files there using fullfile('Figures', 'filename.png').
  3. Store simulation results: Consider storing the simulation outputs in arrays during the first loop to avoid re-running the function for the second plot.

๐Ÿงพ Summary

Well-implemented code with correct economics and helpful interpretation. Adding steady-state lines to the output plot and organizing figure exports into Figures/ will complete the submission.

Grade: โœ… (More than 50% correct)