Solow: Model and Measurement
Capital and labor share¶
f(kt,nt)=rtkt+wtnt=αktf(kt,nt)kt+(1−α)ntf(kt,nt)nt α=f(kt,nt)rtkt=1−f(kt,nt)wtnt.
Summary¶
Product approach:Expenditure approach:Income approach:Law of motion:yt=ktαnt1−αyt=ct+it+gt+(xt−mt)yt=rtkt+wtntkt+1=(1−δ)kt+it
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¶
yt=rtkt+wtnt α=ytrtkt=1−ytwtnt
Model and measurement (continued)¶
δk=i⇒δ=ki δ=yi(yk)−1
Simplifying assumptions¶
Closed economy
xt=mt=0 Fixed savings rate
it=syt
Reduced model¶
ytytytkt+1it=f(kt,nt)=ct+it=rtkt+wtnt=(1−δ)kt+it=syt
ytytytkt+1it=f(kt)=ct+it=rtkt+wt=(1−δ)kt+it=syt (All variables are per capita.)
The Solow model¶
Mechanics of national accounts
Strong behavioral assumption: constant savings rate
For any s∈[0,1], a unique steady state exists
k∗=(δs)1−α1
Steady-state values¶
y∗i∗c∗r∗=(δs)1−αα=sy∗=(1−s)y∗=αsδ
Studying the model numerically¶
Intertemporal choices¶
Returns now vs. later:
consume or invest?
school or work?
rebuild or replace?
eat the cake now?
Question 1¶
α=0.35, δ=0.06, s=0.20
50% capital destruction
How much capital is rebuilt after 50 years?
Question 2¶
Write pseudo-code and program
Track yt, it, ct
Compute growth rates
Plot levels and growth rates
Question 3¶
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*