"매 macro-level patterns 매 micro-rules 만으로 매 predictable 하지 않게 발생". 매 1875 G.H. Lewes 의 용어 도입, 매 1972 Anderson More is Different 가 매 modern foundation. 매 2026 LLM emergent capabilities (in-context learning, reasoning chains), swarm robotics, market crashes, neural avalanches 의 핵심 framework.
매 핵심
매 weak vs strong
Weak emergence (Bedau): 매 micro-rule 으로 simulate 가능, 매 closed-form predict 어려움. 매 대부분의 과학 examples.
Strong emergence (Chalmers): 매 micro 로 deduce 불가, 매 new causal powers. 매 controversial — 매 consciousness debate.
매 핵심 mechanisms
Local interactions + nonlinearity: 매 ant colony, Conway's GoL.
Phase transitions: 매 critical density 매 traffic jam, 매 percolation.
Self-organized criticality (Bak): 매 sandpile, neural avalanches.
Stigmergy: 매 environment-mediated coordination (pheromones).
Symmetry breaking: 매 Turing patterns, 매 cell differentiation.
매 detection / measurement
Mutual information between scales.
Effective complexity (Gell-Mann).
Phi (Φ) integrated information (IIT).
Coarse-grained predictability: 매 micro vs macro forecast accuracy.
Emergent capability scaling curves (LLM): 매 phase transition at parameter threshold.
매 응용
LLM scaling: 매 few-shot reasoning 매 ~10B params 에서 emerge (Wei 2022).
Swarm robotics: 매 simple drones → flock formation, 매 task allocation.
Market microstructure: 매 HFT bots → flash crashes, 매 emergent volatility.
Neural networks: 매 grokking phenomenon, 매 induction heads emerge.
defsandpile_step(grid,threshold=4):drops=grid>=thresholdwhiledrops.any():grid[drops]-=threshold# spread to 4 neighborsgrid[1:]+=np.roll(drops,-1,axis=0)[1:]# ... (similar for other neighbors)drops=grid>=thresholdreturngrid# avalanche size distribution → power law
Schelling Segregation
defschelling(grid,tolerance=0.3,iters=1000):n=grid.shape[0]for_inrange(iters):unhappy=[]fori,jinnp.ndindex(grid.shape):ifgrid[i,j]==0:continuenb=grid[max(0,i-1):i+2,max(0,j-1):j+2].flatten()similar=(nb==grid[i,j]).sum()-1ifsimilar/max(1,(nb!=0).sum()-1)<tolerance:unhappy.append((i,j))# swap unhappy with random empty...returngrid# macroscopic segregation emerges from mild micro-preference
LLM Emergent Capability Detector
defemergent_capability_curve(scales,accuracies,threshold=0.5):"""Find parameter scale where accuracy phase-transitions above random."""fors,ainzip(scales,accuracies):ifa>threshold:returnsreturnNone# Wei et al 2022 — abrupt jump for arithmetic, multi-step reasoning