"매 part 의 sum 의 X — 매 interaction 의 emergent behavior". 매 element 의 isolated analysis 의 대신 매 stocks, flows, feedback loops, delays 의 holistic 의 see. Donella Meadows 의 "Thinking in Systems" 의 canonical — 2026 의 software, climate, policy 의 적용.
매 핵심
매 핵심 vocabulary
Stock: 매 accumulation (inventory, $, customers, tech debt).
Flow: 매 rate of change (sales/day, hires/month).
Feedback loop: 매 output 의 input 의 영향.
Reinforcing (R): amplifies — 매 viral growth.
Balancing (B): stabilizes — 매 thermostat.
Delay: 매 cause → effect 의 lag — oscillation 의 cause.
매 leverage points (Meadows, ranked)
Paradigm (mindset).
Goals of system.
Self-organization rules.
Information flows.
Rules / incentives.
Negative feedback strength.
Positive feedback strength.
Material flows / stocks.
Numbers / parameters (lowest leverage).
매 archetypes
Limits to Growth: R + B → S-curve.
Shifting the Burden: short-term fix 의 weakens long-term solution.
Tragedy of the Commons: shared resource 의 overuse.
Fixes That Fail: 매 quick fix 의 root cause 의 worsen.
defgrowth_with_limit(K=1000,r=0.1,P0=10,T=200):P=[P0]for_inrange(T):# R loop: r*P (reinforcing)# B loop: (1 - P/K) (balancing as P → K)dP=r*P[-1]*(1-P[-1]/K)P.append(P[-1]+dP)returnP# Logistic curve: explosive then plateau
shifting_the_burden:symptoms:- "Quick fix repeatedly applied"- "Underlying problem persists or worsens"- "Capability for fundamental fix atrophies"examples:- Painkillers vs. cause- Hotfixes vs. refactoring- Hiring more on-call vs. reducing alerts
Causal vs. correlational
# Bad: regression on snapshot# Good: simulate stocks/flows over time, validate# with both reference modes (BoT) and structure
매 결정 기준
상황
Approach
Persistent recurring issue
Identify archetype
Counter-intuitive outcome
Look for delays / loops
Quick decision
Mental CLD sketch
Forecast / policy test
Stock-flow simulation
Single-cause obvious
매 systems thinking 의 overkill
기본값: 매 CLD sketch 의 first — 매 archetype 의 명확 시 의 simulation.
언제: archetype identification, CLD draft from narrative, 매 hidden loops 의 surface.
언제 X: quantitative simulation (use Vensim, Stella, SimPy) — LLM 의 numeric simulation 의 unreliable.
❌ 안티패턴
Linear thinking on systemic problem: 매 single cause 의 search — 매 loop 의 miss.
Ignore delays: 매 oscillation 의 surprise — 매 delay 의 model.
Optimize parts in isolation: 매 local optim 의 global degrade.
Paralysis by complexity: 매 over-modeling — 매 핵심 archetype 의 enough.
🧪 검증 / 중복
Verified (Donella Meadows "Thinking in Systems"; Senge "5th Discipline"; Sterman "Business Dynamics").