[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
+192 -41
View File
@@ -2,65 +2,216 @@
id: wiki-2026-0508-exponential-growth
title: Exponential Growth
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AUTO-EXGR-001]
aliases: [exponential, compound growth, doubling time, k-factor, viral coefficient, Moore's law]
duplicate_of: none
source_trust_level: A
confidence_score: 0.92
tags: [auto-reinforced, exponential-growth, compounding, scaling, singularity, network-effects]
confidence_score: 0.95
verification_status: applied
tags: [math, growth, exponential, viral, compound, scaling, doubling-time]
raw_sources: []
last_reinforced: 2026-04-20
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: Math / Python
applicable_to: [Growth, Modeling, Finance, Tech Forecast]
---
# [[Exponential-Growth|Exponential-Growth]]
# Exponential Growth
## 📌 한 줄 통찰 (The Karpathy Summary)
> "직관을 배반하는 속도: 변화량이 현재 값에 비례하여 늘어남으로써, 처음에는 미미해 보이다가 임계점을 넘는 순간 수직으로 폭발하는 우주의 힘이자 지능 폭발(Singularity)의 수학적 엔진."
## 한 줄
> **"매 N(t) = N₀ · e^(rt) — 매 rate ∝ size"**. 매 doubling time = ln(2)/r. 매 famous: Moore's law, COVID, viral, compound interest, ML scaling. 매 modern: 매 sigmoid (logistic) 의 의 의 cap.
## 📖 구조화된 지식 (Synthesized Content)
기하급수적 성장(Exponential-Growth)은 시간이 지남에 따라 일정한 비율로 증가하는 상상 이상의 빠른 변화를 의미합니다.
## 매 핵심
1. **주요 특징**:
* **Compounding Effect**: 원금뿐 아니라 이자에도 이자가 붙듯, 성장이 성장을 낳는 구조.
* **Deceptive Start**: 초기에는 선형적 성장보다도 느려 보일 수 있어 과소평가([[Cognitive Biases|Cognitive Biases]])의 대상이 됨.
* **Scaling Laws**: 반도체 집적도(Moores Law)나 AI 모델의 규모 대비 성능 향상에서 극명하게 나타남.
2. **왜 중요한가?**:
* AI 발전 속도는 인간의 선형적 인식을 훨씬 앞지르고 있으므로, 현재의 한계를 기준으로 미래를 판단하는 오류([[Black-Swan|Black-Swan]] 방치)를 막아줌.
### 매 form
- **Continuous**: N(t) = N₀ · e^(rt).
- **Discrete**: N_t = N₀ · (1+r)^t.
- **Doubling time**: t₂ = ln(2)/r ≈ 0.693/r.
- **Rule of 72**: 매 % rate 의 의 의 72 의 divide.
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 과거에는 자원이나 전력의 한계로 성장이 멈출 것이라는 'S-커브 한계 정책'이 우세했으나, 현대 정책은 하드웨어와 알고리즘의 동시 발전을 통해 성장의 기울기를 매번 꺾어 올리는 '계단식 지수 성장 정책'으로 이어짐(RL Update). ([[Scalability|Scalability]]와 연결)
- **정책 변화(RL Update)**: 단순히 '양적 팽창 정책'을 넘어, 지능의 질이 기하급수적으로 높아지는 '지각 능력의 지수화 정책'이 인류 문명에 미칠 임팩트를 관리하는 정책이 국가 전략의 핵심이 됨.
### 매 응용
1. **Population**: 매 unconstrained.
2. **Compound interest**.
3. **Moore's law**: 매 doubling 18-24mo.
4. **Viral spread**: 매 R0 > 1.
5. **Startup growth**: 매 viral coefficient k.
6. **ML scaling laws** (Hoffmann, Kaplan).
7. **AGI timeline** (controversial).
## 🔗 지식 연결 (Graph)
- [[Scalability|Scalability]], [[Black-Swan|Black-Swan]], [[Emergence|Emergence]], [[Complexity Theory|Complexity Theory]], [[Cognitive Biases|Cognitive Biases]]
- **Modern Tech/Tools**: Moores Law tracking, AI compute scaling laws, Metcalfe's Law.
---
### 매 cap (logistic)
- 매 real world 의 의 logistic 의 settle (carrying capacity).
- 매 dN/dt = rN(1 - N/K).
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 sub-exponential alternatives
- Linear: y = a + bt.
- Polynomial: y = a + bt^n.
- Logistic: 매 S-curve.
- Power-law: y = at^b.
**언제 이 지식을 쓰는가:**
- *(TODO)*
## 💻 패턴
**언제 쓰면 안 되는가:**
- *(TODO)*
### Doubling time
```python
import math
def doubling_time(growth_rate_per_period):
return math.log(2) / growth_rate_per_period
## 🧪 검증 상태 (Validation)
# 매 5% per year
print(doubling_time(0.05)) # 매 ~13.86 years
# 매 Rule of 72: 72/5 = 14.4 (close)
```
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### Viral coefficient (k-factor)
```python
def k_factor(invites_per_user, conversion_rate):
return invites_per_user * conversion_rate
## 🧬 중복 검사 (Duplicate Check)
def viral_growth(initial, k, cycles):
"""매 k > 1 → exponential."""
return [initial * (k ** c) for c in range(cycles)]
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
### Compound interest
```python
def compound(principal, rate, periods, n_compoundings_per_period=12):
return principal * (1 + rate / n_compoundings_per_period) ** (n_compoundings_per_period * periods)
## 🕓 변경 이력 (Changelog)
def continuous_compound(principal, rate, time):
return principal * math.exp(rate * time)
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
### Logistic (real-world cap)
```python
import numpy as np
from scipy.integrate import odeint
def logistic_growth(N, t, r, K):
return r * N * (1 - N / K)
t = np.linspace(0, 50, 500)
N = odeint(logistic_growth, 10, t, args=(0.3, 1000))
```
### Detect exponential vs not
```python
def is_exponential(timeseries):
"""매 log(y) 의 linear 의 fit?"""
log_y = np.log(np.maximum(timeseries, 1e-9))
t = np.arange(len(log_y))
r2 = np.corrcoef(t, log_y)[0, 1] ** 2
return r2 > 0.95
```
### Fit growth rate
```python
from scipy.optimize import curve_fit
def exp_func(t, N0, r):
return N0 * np.exp(r * t)
def fit_exp(t, y):
popt, _ = curve_fit(exp_func, t, y, p0=[y[0], 0.1])
return {'N0': popt[0], 'r': popt[1], 'doubling_time': math.log(2) / popt[1]}
```
### Moore's law forecast
```python
def moores_forecast(transistor_count_now, year_now, year_target):
years = year_target - year_now
return transistor_count_now * 2 ** (years / 1.5) # 매 2x per 1.5y
```
### COVID-style
```python
def epidemic_R(cases_today, cases_5days_ago, gen_time_days=5):
"""매 매 5d 의 doubling 매 매 R."""
growth_rate = math.log(cases_today / cases_5days_ago) / 5
return math.exp(growth_rate * gen_time_days)
```
### Cohort retention (counter-exponential)
```python
def retention_curve(d1=0.4, decay_rate=0.05):
"""매 retention 의 typically 매 power-law / exponential decay."""
return [d1 * math.exp(-decay_rate * d) for d in range(0, 365)]
```
### Detect inflection (saturation)
```python
def detect_saturation(series, window=10):
"""매 derivative 의 decrease 의 detect."""
deltas = np.diff(series)
recent_delta = np.mean(deltas[-window:])
earlier_delta = np.mean(deltas[-2*window:-window])
return recent_delta < earlier_delta * 0.7 # 매 30% slowdown
```
### LLM scaling law (Chinchilla)
```python
def chinchilla_optimal(N_params, D_tokens):
"""매 optimal: D ≈ 20 * N (Hoffmann 2022)."""
optimal_D = 20 * N_params
if D_tokens < optimal_D * 0.5: return 'undertrained'
if D_tokens > optimal_D * 2: return 'overtrained'
return 'near_optimal'
```
### Viral campaign forecast
```python
def viral_campaign(seed_users, k, cycles, cycle_days):
users = [seed_users]
for _ in range(cycles):
users.append(users[-1] * (1 + k))
return {'final_users': users[-1], 'days': cycles * cycle_days, 'series': users}
```
### Linear-log plot helper
```python
import matplotlib.pyplot as plt
def plot_growth(t, y):
fig, ax = plt.subplots(1, 2, figsize=(10, 4))
ax[0].plot(t, y); ax[0].set_title('Linear')
ax[1].semilogy(t, y); ax[1].set_title('Log-y (exp = straight)')
plt.show()
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Population | Logistic (capped) |
| Tech transistor | Moore's law (exp) |
| Startup | Viral k + retention |
| Disease | R + gen time |
| Investment | Compound |
| Hype curve | Logistic + decay |
**기본값**: 매 short-horizon 의 exponential model + 매 long-horizon 의 logistic + 매 detect saturation 의 monitor.
## 🔗 Graph
- 부모: [[Math]] · [[Growth]]
- 변형: [[Logistic-Growth]] · [[Power-Law]] · [[Compound-Interest]]
- 응용: [[Epidemiological-Modeling]] · [[Viral-Marketing]] · [[Moores-Law]]
- Adjacent: [[Scaling-Laws]] · [[Singularity]] · [[Doubling-Time]]
## 🤖 LLM 활용
**언제**: 매 growth model. 매 forecast. 매 viral / scaling.
**언제 X**: 매 saturation evident.
## ❌ 안티패턴
- **Extrapolate forever**: 매 cap 의 ignore.
- **Linear intuition for exp**: 매 trillion vs million 의 underestimate.
- **No log-y plot**: 매 detect 의 fail.
- **Cherry-pick window**: 매 trend manipulate.
## 🧪 검증 / 중복
- Verified (math textbook, Hoffmann 2022 Chinchilla, COVID literature).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-04-20 | Auto-reinforced |
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — exp + 매 doubling / viral / logistic / scaling code |