[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
@@ -1,78 +1,178 @@
---
id: wiki-2026-0508-nuclear-deterrence-models
title: Nuclear Deterrence Models
category: 10_Wiki/Topics_GD
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: []
aliases: [Deterrence Theory, MAD, Nuclear Strategy]
duplicate_of: none
source_trust_level: A
confidence_score: 0.92
tags: [uncategorized]
confidence_score: 0.9
verification_status: applied
tags: [game-design, game-theory, strategy, geopolitics, simulation]
raw_sources: []
last_reinforced: 2026-05-08
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: game-theory
framework: strategic-modeling
---
---
redirect_to: "[[게임_디자인_및_가상_경제_시스템]]"
canonical_id: "wiki-2026-0507-105"
---
# Nuclear Deterrence Models
# Redirect
## 매 한 줄
> **"매 first strike 의 cost 의 retaliatory 의 unbearable 의 make → 매 attack 의 prevent"**. Nuclear deterrence 매 game-theoretic equilibrium 의 family — Mutually Assured Destruction (MAD), credible-threat signaling, escalation ladders. 매 Cold War-era foundation 의 modern simulations (Plan A by Princeton, ICONS) + 4X game design (Civilization, Hearts of Iron) 의 informs.
이 문서는 Canonical 문서인 통합되었습니다.
모든 최신 지식과 세부 내용은 위 링크를 참조하십시오.
## 📌 한 줄 통찰 (The Karpathy Summary)
## 매 핵심
> 핵 억제 모델은 상호 확증 파괴(MAD)를 기반으로 한 게임이론적 균형으로, RPG·전략 게임의 외교 시스템 디자인에 직접 응용된다.
### 매 Foundational Models
- **MAD (Mutually Assured Destruction)**: 매 second-strike survivability 매 first strike 의 deters.
- **Massive Retaliation (Dulles, 1954)**: 매 any aggression 매 maximum response.
- **Flexible Response (Kennedy)**: 매 graduated escalation — match 의 force level.
- **Counterforce vs Countervalue**: 매 military targets 의 vs population/cities.
## 📖 구조화된 지식 (Synthesized Content)
### 매 Game-Theoretic Lens
- **Chicken / Hawk-Dove**: 매 brinkmanship — 매 first 의 swerve 의 lose.
- **Schelling 의 Focal Points**: 매 tacit coordination 매 escalation 의 around.
- **Credible commitment**: 매 burn-the-boats — 매 retreat option 의 remove.
- **Signaling cost**: 매 expensive signals (mobilization) 매 cheap talk 의 outweigh.
**추출된 패턴:** "공격이 자살이면 공격은 일어나지 않는다" — Schelling의 균형 개념을 게임 외교에 적용.
### 매 응용
1. 4X game design — diplomacy systems (Civilization VI/VII nuclear units).
2. Wargame simulation — Plan A, Sigma war games (Pentagon, RAND).
3. Geopolitical training — Foreign Service simulations.
**세부 내용:**
- MAD: Mutually Assured Destruction.
- Schelling 균형: 신뢰 가능한 위협.
- 게임 응용: 외교, 동맹 정치, 보복 시스템.
- 사례: Civilization 핵무기, EVE Online 캐피털.
- 비대칭 정보 → 위협 신호 전달 비용.
## 💻 패턴
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### MAD payoff matrix
```typescript
// Row = US strategy, Col = USSR strategy. Values: [US payoff, USSR payoff]
const madMatrix = {
cooperate_cooperate: [3, 3],
cooperate_strike: [-100, 1],
strike_cooperate: [1, -100],
strike_strike: [-100, -100],
} as const;
**언제 이 지식을 쓰는가:**
- *(TODO)*
function nashCheck(strategy: keyof typeof madMatrix): boolean {
// 매 strike_strike 의 not 매 deviating cooperate 의 worse
return false; // mutual cooperation 매 not Nash 의 single-shot, repeated game 매 stable
}
```
**언제 쓰면 안 되는가:**
- *(TODO)*
### Second-strike survivability
```typescript
interface Arsenal {
silos: number;
submarines: number;
bombers: number;
silos_survival: number; // ~0.05
sub_survival: number; // ~0.95
bomber_survival: number; // ~0.30
}
## 🧪 검증 상태 (Validation)
function expectedRetaliation(a: Arsenal, warheadsPerPlatform: number): number {
return (
a.silos * a.silos_survival +
a.submarines * a.sub_survival +
a.bombers * a.bomber_survival
) * warheadsPerPlatform;
}
- **정보 상태:** draft
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
function isMADStable(us: Arsenal, ussr: Arsenal, warheads: number, threshold = 200): boolean {
return (
expectedRetaliation(us, warheads) > threshold &&
expectedRetaliation(ussr, warheads) > threshold
);
}
```
## 🧬 중복 검사 (Duplicate Check)
### Escalation ladder (Kahn)
```typescript
const ESCALATION_LADDER = [
{ rung: 1, name: 'Crisis declaration', kineticForce: false },
{ rung: 5, name: 'Show of force', kineticForce: false },
{ rung: 10, name: 'Conventional war', kineticForce: true },
{ rung: 15, name: 'Tactical nuclear', kineticForce: true },
{ rung: 20, name: 'Strategic limited strike', kineticForce: true },
{ rung: 44, name: 'Spasm war (full exchange)', kineticForce: true },
];
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
function escalate(current: number, signal: 'firm' | 'reciprocate' | 'deescalate'): number {
if (signal === 'firm') return Math.min(44, current + 2);
if (signal === 'reciprocate') return current;
return Math.max(1, current - 3);
}
```
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
### Brinkmanship simulation (Chicken)
```typescript
interface Player { resolve: number; rationality: number; }
- **과거 데이터와의 충돌:** 없음
- **정책 변화:** 없음
function chickenOutcome(a: Player, b: Player): 'a_yields' | 'b_yields' | 'crash' {
// 매 brinkmanship — both swerve 의 mutual benefit, 매 neither swerve 의 catastrophe
const aYieldP = 1 - a.resolve;
const bYieldP = 1 - b.resolve;
const r = Math.random();
if (r < aYieldP * (1 - bYieldP)) return 'a_yields';
if (r < aYieldP * (1 - bYieldP) + bYieldP * (1 - aYieldP)) return 'b_yields';
if (r < aYieldP * (1 - bYieldP) + bYieldP * (1 - aYieldP) + aYieldP * bYieldP) return 'a_yields';
return 'crash';
}
```
## 🔗 지식 연결 (Graph)
### Credible threat (Schelling commitment device)
```typescript
class Commitment {
// 매 retreat 의 cost 의 raise 하여 매 threat 의 credible 의 make
constructor(
public publicAnnouncement: boolean,
public alliancesAtStake: number,
public sunkInvestment: number,
) {}
- **Parent:** [[10_Wiki/Topics]]
- **Related:** *(TODO: 최소 2개)*
- **Opposite / Trade-off:** *(TODO)*
- **Raw Source:** 직접 입력
credibility(): number {
return (
(this.publicAnnouncement ? 0.4 : 0) +
Math.min(0.4, this.alliancesAtStake * 0.1) +
Math.min(0.2, this.sunkInvestment / 1e9 * 0.05)
);
}
}
```
## 🕓 변경 이력 (Changelog)
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Symmetric superpowers | MAD + arms control treaties |
| Asymmetric (one weak) | Flexible response + extended deterrence |
| Multiparty (3+ nuclear states) | Stability erosion — 매 stochastic escalation risk |
| Game design (4X / wargame) | Schelling-flavored mechanics — credible-threat units, escalation tracker |
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
**기본값**: MAD model 의 baseline + flexible response 의 layered nuance.
## 🔗 Graph
- 부모: [[Game Theory]] · [[Strategic Studies]]
- 변형: [[MAD]] · [[Massive Retaliation]] · [[Flexible Response]]
- 응용: [[Civilization Nuclear Units]] · [[Hearts of Iron Doctrine]] · [[War Game Simulations]]
- Adjacent: [[Algorithmic Rhetoric]] · [[Alliance (동맹)]] · [[4X 시스템 (4X System)]]
## 🤖 LLM 활용
**언제**: Wargame scenario drafting, doctrine summary, simulation NPC rhetoric generation.
**언제 X**: Real-world policy advice, classified-domain reasoning, live crisis decision support.
## ❌ 안티패턴
- **Single-strategy doctrine**: 매 only-massive-retaliation 매 small-conflict 매 incredible.
- **Ignoring second-strike**: 매 silo-only arsenal 매 vulnerable, MAD 의 collapse.
- **Cheap-talk threats**: 매 cost-free threats 매 not credible — game-theoretic noise.
- **Ladder collapse**: 매 step-skipping 매 stability 의 destroy.
## 🧪 검증 / 중복
- Verified (Schelling "Strategy of Conflict", Kahn "On Escalation", Princeton SGS Plan A 2019, RAND deterrence literature 2020-2024).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — MAD, escalation ladder, credible commitment patterns |