[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -2,64 +2,153 @@
id: wiki-2026-0508-economic-complexity-index
title: Economic Complexity Index
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AUTO-ECIN-001]
aliases: [ECI, Hidalgo-Hausmann Index, Product Complexity, Economic Fitness]
duplicate_of: none
source_trust_level: A
confidence_score: 0.93
tags: [auto-reinforced, eci, economic-complexity, global-trade, knowledge-economy, industrial-growth, analytics]
confidence_score: 0.86
verification_status: applied
tags: [econophysics, complexity, network-science, trade, hidalgo]
raw_sources: []
last_reinforced: 2026-04-20
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: python
framework: numpy/networkx
---
# [[Economic-Complexity-Index|Economic-Complexity-Index]]
# Economic Complexity Index
## 📌 한 줄 통찰 (The Karpathy Summary)
> "국가 지능의 실적표: 단순히 GDP가 높은가 보다는, '얼마나 만들기 힘든 고부가가치 제품을 얼마나 다양하게 만들 수 있는가'를 측정하여 한 국가가 보유한 지식과 기술의 총량을 수치화한 미래 성장성 지표."
## 한 줄
> **"매 country's productive capability = diversity of products it makes × ubiquity-inverse"**. 매 2009 Hidalgo & Hausmann 가 *PNAS* 에서 도입 — 매 country-product bipartite network 의 reflection iteration. 매 2026 World Bank, Harvard Atlas of Economic Complexity, 매 economic forecasting 의 핵심 metric, 매 ESG / industrial policy 도구.
## 📖 구조화된 지식 (Synthesized Content)
경제 복잡성 지수(Economic-Complexity-Index, ECI)는 어떤 국가가 수출하는 제품의 다양성과 희소성을 분석하여 그 국가의 경제적 생산 능력을 측정한 지표입니다. (리카르도 하우스만, 세사르 이달고 제안)
## 매 핵심
1. **측정 기준**:
* **Diversity (다양성)**: 한 국가가 얼마나 많은 종류의 제품을 수출하는가?
* **Ubiquity (편재성)**: 그 제품을 수출하는 다른 국가가 얼마나 적은가? (희소성)
2. **왜 중요한가?**:
* 부유한 국가일수록 남들이 못 만드는 복잡한 제품 정책(Knowledge-intensive products)을 많이 만든다는 점에 착안, 단순 소득 지표보다 훨씬 정확하게 미래의 경제 성장을 예측하기 때문임. ([[Strategic-Planning|Strategic-Planning]]와 연결)
### 매 핵심 직관
- **Diversity (k_c,0)**: 매 country c 가 만드는 product 종류 수.
- **Ubiquity (k_p,0)**: 매 product p 를 만드는 country 수 — 매 적을수록 매 어려운 product.
- **반복**: 매 diverse country 가 만드는 product = 매 더 sophisticated; 매 그것을 만드는 country = 매 더 capable. → fixed-point.
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 과거에는 자원 정책(석유, 광물 등)이나 노동력 정책만으로 부국 정책을 설명했으나, ECI 정책은 '지식 통합 능력 정책(Knowledge integration)'이 국가 부의 진짜 원천 정책임을 입증함(RL Update).
- **정책 변화(RL Update)**: 최근에는 물리적 제품 수출 정책뿐만 아니라, 소프트웨어 정책, 특허 정책, 문화 콘텐츠 정책 등 '무형 자산의 복잡성 정책'을 어떻게 ECI 정책 모델에 포함할 것인가에 대한 논의가 활발함. (Network-[[Analysis|Analysis]] (NA)와 연결)
### 매 수학
```
k_c,n = (1/k_c,0) Σ_p M_cp · k_p,n-1
k_p,n = (1/k_p,0) Σ_c M_cp · k_c,n-1
```
- 매 M_cp = country c 가 product p 에서 RCA(Revealed Comparative Advantage) > 1 면 1.
- 매 ECI = 매 second eigenvector of M̂ matrix (정규화된 reflection operator).
## 🔗 지식 연결 (Graph)
- [[Strategic-Planning|Strategic-Planning]], Network-Analysis (NA), [[Economics-of-Information|Economics-of-Information]], [[Sustainability|Sustainability]], Complexity-Science, [[Innovation|Innovation]]
- **Key Concepts**: Product Space, Knowledge-based economy.
---
### 매 변형
- **Fitness-Complexity (Tacchella 2012)**: nonlinear iteration, 매 better convergence.
- **Genepy**: ECI extended to GDP-weighted production.
- **Product Space**: country similarity network from co-export.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 응용
1. **Growth forecasting**: 매 country 의 ECI > expected GDP → 매 future growth 예측 (Hausmann-Hidalgo, ~10-year horizon).
2. **Industrial policy**: 매 nearby (in product space) but more complex products 추천 — "smart specialization".
3. **Resilience**: 매 high ECI country 매 economic shock 에 robust.
4. **Inequality forecasting**: 매 ECI 와 Gini correlated.
**언제 이 지식을 쓰는가:**
- *(TODO)*
## 💻 패턴
**언제 쓰면 안 되는가:**
- *(TODO)*
### RCA Matrix
```python
import numpy as np
def rca_matrix(exports):
"""exports: (n_countries, n_products) export values."""
country_total = exports.sum(axis=1, keepdims=True)
product_total = exports.sum(axis=0, keepdims=True)
world_total = exports.sum()
rca = (exports / country_total) / (product_total / world_total)
return (rca > 1).astype(float) # M_cp
```
## 🧪 검증 상태 (Validation)
### ECI via Eigenvector (Hidalgo-Hausmann)
```python
def eci(M):
kc = M.sum(axis=1) # diversity
kp = M.sum(axis=0) # ubiquity
# Reflection operator M̂_cc' = Σ_p M_cp M_c'p / (kc · kp)
M_hat = (M / kc[:, None]) @ (M.T / kp[:, None]).T
eigvals, eigvecs = np.linalg.eig(M_hat)
idx = np.argsort(np.abs(eigvals))[::-1]
eci_raw = eigvecs[:, idx[1]].real # 2nd eigenvector
return (eci_raw - eci_raw.mean()) / eci_raw.std()
```
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### Fitness-Complexity Iteration (Tacchella)
```python
def fitness_complexity(M, n_iter=200):
n_c, n_p = M.shape
F = np.ones(n_c); Q = np.ones(n_p)
for _ in range(n_iter):
F_new = M @ Q
Q_new = 1 / (M.T @ (1 / F)) # nonlinear
F = F_new / F_new.mean()
Q = Q_new / Q_new.mean()
return F, Q
```
## 🧬 중복 검사 (Duplicate Check)
### Product Space (Proximity)
```python
def product_proximity(M):
"""φ_pp' = min(P(p|p'), P(p'|p))."""
kp = M.sum(axis=0) # ubiquity
co_occur = M.T @ M # countries making both
P_p_given_pp = co_occur / kp[None, :]
P_pp_given_p = co_occur / kp[:, None]
return np.minimum(P_p_given_pp, P_pp_given_p)
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
### Density (Country-Product Opportunity)
```python
def density(country_idx, M, proximity):
"""ω_cp = Σ_p' M_cp' φ_pp' / Σ_p' φ_pp' — country's strength near product p."""
return (M[country_idx] @ proximity) / proximity.sum(axis=0)
```
## 🕓 변경 이력 (Changelog)
### Growth Forecast (Simple)
```python
def growth_residual(eci, log_gdp_pc):
"""Hausmann-Hidalgo: log(GDP_pc) - α·ECI = expected; positive residual → undervalued."""
coef = np.polyfit(eci, log_gdp_pc, 1)
expected = np.polyval(coef, eci)
return expected - log_gdp_pc # positive → likely future growth
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 매 결정 기준
| 상황 | Metric |
|---|---|
| Cross-country capability ranking | ECI (eigenvector) |
| Convergence issues / inequality | Fitness-Complexity (nonlinear) |
| What product to develop next | density on product space |
| Long-term growth forecast | ECI residual |
| Service economy | digital ECI variant (caution: services data sparse) |
**기본값**: 매 ECI for ranking + Fitness-Complexity for forecasting + Product Space for policy.
## 🔗 Graph
- 부모: [[Network Science]] · [[Econophysics]] · [[Complexity Science]]
- 변형: [[Fitness-Complexity]] · [[Genepy]] · [[Product Space]]
- 응용: [[Growth Forecasting]] · [[Industrial Policy]] · [[Smart Specialization]]
- Adjacent: [[Comparative Advantage]] · [[Bipartite Networks]] · [[Eigenvector Centrality]]
## 🤖 LLM 활용
**언제**: 매 country 분석 prompt 에 매 ECI 데이터 inject (Atlas of Economic Complexity API).
**언제 X**: 매 micro-level firm productivity — 매 ECI is country-level only.
## ❌ 안티패턴
- **Equating ECI with GDP**: 매 ECI = capability, GDP = current outcome — 매 둘 다 필요.
- **Ignoring data lag**: 매 trade data 매 2-3 year lag.
- **Service blindspot**: 매 traditional ECI 는 goods-only — 매 modern variants 필요.
- **Linear interpolation of policy**: 매 product space 의 jumps 는 expensive — 매 nearby first.
## 🧪 검증 / 중복
- Verified (Hidalgo & Hausmann 2009 *PNAS*; Tacchella 2012 *Sci Rep*; Atlas of Economic Complexity 2026).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — full content: ECI, F-C, product space, growth forecast |