"매 Complex System 매 part 의 sum 초과 의 emergent 결과 발생 system". 매 simple-rule 매 unpredictable global 의 야기. Santa Fe Institute (Holland, Kauffman, Mitchell) 의 lineage. 2026 매 LLM swarm, distributed micro-services, social platform 매 canonical 예.
매 핵심
매 정의 specifics
Many components (10² ~ 10⁹).
Local interaction (no central control).
Non-linearity: 매 input → output 의 disproportionate.
Emergence: 매 macro behavior 매 micro rule 의 not directly inferrable.
Adaptation: 매 component 의 state-update 의 environment 응답.
매 simple ↔ complicated ↔ complex (Cynefin)
Simple: 매 cause↔effect obvious. Best practice 의 사용.
Complicated: 매 expert analysis required. Good practice.
Complex: 매 retrospect 만 cause 추론 가능. 매 probe-sense-respond.
Chaotic: 매 cause↔effect link absent. Act-sense-respond.
매 응용
Distributed system design 매 emergent failure mode 의 anticipate.
Org change 매 directly-controllable lever 부재 — 매 nudge.
Market / social media 의 non-linear viral propagation.
💻 패턴
Power-law detection (Pareto)
importnumpyasnp,scipy.statsasstdefis_powerlaw(data:np.ndarray)->bool:"""Heavy-tailed → likely complex, not Gaussian."""fit=st.powerlaw.fit(data)ks_p=st.kstest(data,"powerlaw",fit).pvaluereturnks_p>0.05
defearly_warning_signal(timeseries):"""Increased variance + autocorrelation → near phase transition."""rolling_var=pd.Series(timeseries).rolling(50).var()rolling_ac=pd.Series(timeseries).rolling(50).apply(lambdax:x.autocorr(1))returnrolling_var.iloc[-1]>rolling_var.mean()*1.5 \
androlling_ac.iloc[-1]>0.7
Causal-loop policy lever map
# policy_levers.ymlgoal:reduce-incident-ratelevers:- lever:deploy-frequencyfeedback:positive # more deploys → more incidents short-termhorizon:weeks- lever:test-coveragefeedback:negative # higher coverage → fewer incidentshorizon:months- lever:oncall-rotation-sizefeedback:negative # larger rotation → less burnout → fewer incidentshorizon:quarters
Network resilience metric
importnetworkxasnxdeffragility(G:nx.Graph)->float:"""Higher = more fragile to targeted node removal."""bc=nx.betweenness_centrality(G)returnmax(bc.values())-np.median(list(bc.values()))
언제: 매 system map 의 first-draft, 매 feedback-loop 의 surface, 매 policy lever brainstorm.
언제 X: 매 prediction 의 complex system — 매 LLM 매 false confidence 매 위험. 매 historical analogy 의 limit.
❌ 안티패턴
Linear thinking: 매 cause→effect 의 direct mapping 매 complex 에서 wrong.
Optimization fallacy: 매 single metric 의 optimization 매 emergent failure 야기 (Goodhart).
Central control assumption: 매 top-down command 매 local-rule system 매 ineffective.
Reductionism over-reach: 매 component 의 분석 매 emergent property 의 missing.
Plan-the-future fallacy: 매 5-year-plan 매 complex domain 매 fiction.
🧪 검증 / 중복
Verified (Mitchell Complexity: A Guided Tour, Holland Hidden Order, Snowden Cynefin Framework, Santa Fe Institute lectures, Donella Meadows Thinking in Systems).
신뢰도 A.
🕓 Changelog
날짜
변경
2026-05-08
Phase 1
2026-05-10
Manual cleanup — Cynefin, agent-based model, power law, anti-patterns