"매 자본 축적 매 한계 — 매 기술이 매 진짜 성장". Solow(1956) · Swan(1956) 매 neoclassical growth model — Y=F(K,L) 매 diminishing returns 매 가정, 매 long-run growth 매 exogenous technology(A) 의 driver. 매 macro · cross-country growth · 매 software engineering productivity 의 mental model.
매 핵심
매 Production function
Y = A · F(K, L), F is Cobb-Douglas: Y = A · K^α · L^(1-α), 0 < α < 1.
Per-worker form: y = A · k^α, where y=Y/L, k=K/L.
Capital accumulation: Δk = s·y − (n + δ + g)·k.
s = savings rate, n = labor growth, δ = depreciation, g = tech growth.
매 Steady state
k*: s · A · k*^α = (n+δ+g) · k* → k* = (sA/(n+δ+g))^(1/(1-α)).
매 steady state 매 per-capita output 매 grow at rate g (tech). 매 K alone 매 cannot drive growth.
매 Convergence
Conditional convergence: 같은 (s, n, δ) 매 country 매 매 same k* 매 수렴. 매 catch-up.
Empirical: cross-country regression 매 ~2% / year convergence.
매 응용
Cross-country growth 비교 (Mankiw-Romer-Weil augmented Solow).
Endogenous growth 의 baseline (Romer, Lucas 매 critique).
SWE productivity analogy: hiring(L) · tooling(K) · 매 process improvement(A).
# 매 c = (1-s)·y 매 maximize at steady state# d c*/ds = 0 → s_gold = αalpha=0.33s_golden=alpha# 매 Cobb-Douglas의 closed-formprint(f'Golden rule s = {s_golden}')
Convergence half-life
importmath# Convergence speed λ = (1-α)·(n+δ+g)defhalf_life(alpha=0.33,n=0.01,delta=0.05,g=0.02):lam=(1-alpha)*(n+delta+g)returnmath.log(2)/lamprint(half_life())# ~ 17.3 years
Augmented Solow (human capital, MRW 1992)
# Y = K^α · H^β · (AL)^(1-α-β)defmrw(s_k=0.25,s_h=0.10,alpha=0.33,beta=0.28,n=0.01,delta=0.05,g=0.02):factor=(n+delta+g)k=(s_k**(1-beta)*s_h**beta/factor)**(1/(1-alpha-beta))h=(s_k**alpha*s_h**(1-alpha)/factor)**(1/(1-alpha-beta))returnk,h