Solow: Model and Measurement
Capital and labor share¶
From first order equation
Hence
With Cobb–Douglas production, capital’s and labor’s shares of output are constant and equal to .
Summary¶
Match the model to the data¶
Choose parameters so model behavior matches empirical moments
Long-run ratios (e.g. factor shares) are relatively stable
Parameters are calibrated to match means of these ratios
Model and measurement¶
Income decomposition:
With Cobb–Douglas:
Set to match the average capital share of income
Model and measurement (continued)¶
Along a detrended balanced growth path:
Use observable ratios:
Simplifying assumptions¶
Closed economy
Fixed savings rate
Reduced model¶
Per-capita formulation¶
(All variables are per capita.)
The Solow model¶
Mechanics of national accounts
Strong behavioral assumption: constant savings rate
For any , a unique steady state exists
Steady-state values¶
Studying the model numerically¶
Simple law of motion
Low-dimensional dynamics
Naturally suited for computational implementation
Intertemporal choices¶
Returns now vs. later:
consume or invest?
school or work?
rebuild or replace?
eat the cake now?
Question 1¶
, ,
50% capital destruction
How much capital is rebuilt after 50 years?
Question 2¶
Write pseudo-code and program
Track , ,
Compute growth rates
Plot levels and growth rates
Question 3¶
How long until output is within 0.5% of its pre-shock level?
Pseudo-code (Question 1)¶
α ← 0.35
δ ← 0.06
s ← 0.20
k* ← (s/δ)^(1/(1-α))
k1 ← 0.5 · k*
for t = 1,…,50:
y_t ← k_t^α
i_t ← s y_t
k_{t+1} ← (1-δ)k_t + i_t
return k_51 / k*