"매 system output 의 input 의 re-entry — 매 stability 또는 amplification 의 결정". 매 1948 Wiener 의 Cybernetics 가 unifying frame. 매 2026 의 RLHF, autoscaling, climate tipping points, social media engagement loop 의 modern instances.
매 핵심
매 2 polarities
Negative (balancing): 매 deviation 의 dampen — 매 thermostat, homeostasis, PID controller.
Positive (reinforcing): 매 deviation 의 amplify — 매 viral growth, asset bubble, ice-albedo feedback, runaway selection.
매 5 archetypes (Senge)
Limits to growth: 매 reinforcing + balancing — 매 S-curve.
Shifting the burden: 매 quick fix 의 underlying issue 의 weaken.
Tragedy of the commons: 매 individual reinforcing → collective collapse.
Fixes that fail: 매 short-term fix 의 long-term backfire.
Success to the successful: 매 winner-take-all reinforcing.
importnumpyasnpfromscipy.signalimportTransferFunction,bode# Open-loop transfer functionsys=TransferFunction([1],[1,2,3,1])# 3rd orderw,mag,phase=bode(sys)# Phase margin: phase at gain crossover + 180°
Detect runaway positive feedback
defdetect_runaway(time_series:list[float],window:int=10,threshold:float=1.5)->bool:"""Exponential growth detector — log-linear fit slope."""importnumpyasnpiflen(time_series)<window:returnFalsey=np.log(np.maximum(time_series[-window:],1e-9))slope=np.polyfit(range(window),y,1)[0]returnslope>np.log(threshold)/window
매 결정 기준
상황
Approach
Process regulation, setpoint tracking
PID (negative feedback)
Growth modeling
logistic / Gompertz (mixed)
Cascading failure prevention
rate limiters + circuit breakers
Slow process w/ delay
feed-forward + smith predictor
ML training
RLHF / GRPO with KL regularization
기본값: 매 negative feedback 의 default for stability. 매 positive feedback 의 explicit guard (rate limit, kill switch).
언제: 매 archetype identification, 매 PID gain initial estimation, 매 system dynamics diagram 의 stock-flow conversion.
언제 X: 매 safety-critical control gain tuning — 매 hardware-in-the-loop testing, 매 actual phase margin verification 필수.
❌ 안티패턴
Ignoring delay: 매 time-delay 의 PID 의 instability — 매 dead-time compensation 필요.
High gain assumption = better tracking: 매 oscillation, 매 noise amplification.
Open-loop control for safety-critical: 매 disturbance rejection X — 매 closed-loop 필수.
Reinforcing loop 의 무방어 deploy: 매 viral metric 의 optimization — 매 social harm runaway (engagement maximization → polarization).