π± Week 7 Homework β Feedback
π± Week 7 Homework β Feedback
Student: Felice Urciuoli
Assignment: Solow Model with Technological & Population Growth
β Overall Assessment
Result: β More than 50% Correct
Strong submission with well-structured code and good economic interpretation. The helper function is correctly implemented (embedded in the script), all three scenarios are simulated, and steady-state reference lines are included on both plots. The main issues are: (1) parameters donβt match the homework specification (T=50 instead of 80, k0=0.5 instead of 3.1201), and (2) figures are saved as .fig files only (not PNG/PDF). The interpretation demonstrates solid understanding of the economic mechanisms.
π Task-by-Task Checklist
| # | Requirement | Status | Notes |
|---|---|---|---|
| 1 | Separate simulate_growth_tech.m helper with correct signature |
β οΈ | Function embedded in script (acceptable but not ideal). |
| 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) |
β οΈ | Uses T=50, k0=0.5 instead of T=80, k0=3.1201. |
| 6 | Scenario matrix includes (0,0), (0.01,0.02), (0.02,0.03) |
β | Stored in pairs. |
| 7 | Reuses simulation outputs for later steps | β οΈ | Re-runs function for each plot. |
| 8 | Plot k_t for the three scenarios |
β | Figure 3 shows all paths. |
| 9 | Add steady-state reference lines on k_t plot |
β | Uses yline with labels. |
| 10 | Plot y_t/A_t for the three scenarios |
β | Figure 4 implemented. |
| 11 | Add steady-state reference lines on y_t/A_t plot |
β | Missing yline on y/A plot. |
| 12 | Save figures to Figures/ (PNG/PDF) |
β οΈ | Only saves .fig files, not PNG/PDF. |
| 13 | Provide steady-state summary (table or print) | β οΈ | Prints slopes but not steady-state k*/(y/A)* values. |
| 14 | Interpretation answers both homework questions | β | Good discussion of dilution and convergence speed. |
| 15 | Code hygiene (comments, no cd, folder guard) |
β | Well-commented, no absolute paths. |
Score: 9/15 tasks fully correct, 4/15 partial, 2/15 missing β β
π Evidence & Highlights
97:122:docs/week7/Homework submissions/Felice Urciuoli Week7/Felice_Urciuoli_week7.m
[k,y,c,A] = simulate_growth_tech(alpha,s,delta,n,g,k0,A0,T);
...
figure(3); plot(1:T,k,'LineWidth',1.5)
...
yline(k_ss_hw(j),'--',sprintf('k*(n=%.2f,g=%.2f)',pairs(j,1),pairs(j,2)))
π‘ Suggestions for Improvement
- Use the homework-specified parameters: Set
T=80andk0=3.1201to match the instructions and enable direct comparison with reference solutions. - Add steady-state lines to the
y/Aplot: Includeylineoverlays showing(y/A)* = k*^alphafor each scenario on Figure 4. - Export figures as PNG/PDF: Use
exportgraphics()orprint()to save figures in PNG/PDF format (not just.fig), and save them to aFigures/directory. - Print steady-state summary: Add a
fprintfblock that reportsk*and(y/A)*for each scenario, similar to your slope analysis.
π§Ύ Summary
Solid implementation with correct economic logic and helpful interpretation. Adjusting the parameters to match the homework specification and adding PNG/PDF exports will make this submission complete.
Grade: β (More than 50% correct)