[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
@@ -2,65 +2,138 @@
id: wiki-2026-0508-black-hole
title: Black Hole
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AUTO-BLHO-001]
aliases: [Schwarzschild, Event Horizon, Singularity]
duplicate_of: none
source_trust_level: A
confidence_score: 0.88
tags: [auto-reinforced, black-hole, astroPhysics, singularity, gravity, space-time]
confidence_score: 0.9
verification_status: applied
tags: [physics, general-relativity, computation, information-theory]
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: Python
framework: einsteinpy, astropy
---
# [[Black-Hole|Black-Hole]]
# Black Hole
## 📌 한 줄 통찰 (The Karpathy Summary)
> "시공간의 막다른 길: 거대한 질량이 좁은 공간에 압축되어 중력이 무한대에 수렴함으로써, 빛조차 빠져나갈 수 없는 우주의 가장 극단적이고 신비로운 마침표."
## 한 줄
> **"매 spacetime 의 region where escape velocity > c"**. Schwarzschild (1916) solution → Hawking radiation (1974) → EHT M87* image (2019) + Sgr A* (2022) → 매 2026 modern view: 매 information paradox 의 holographic / ER=EPR resolution 의 frontier. 매 CS 측면에서는 매 information bound, holographic encoding, computational limit 의 reference physical system.
## 📖 구조화된 지식 (Synthesized Content)
블랙홀(Black-Hole)은 중력이 너무 강해 빛을 포함한 어떤 입자도 탈출할 수 없는 시공간의 영역입니다.
## 매 핵심
1. **핵심 구조**:
* **Event Horizon (사건의 지평선)**: 안쪽에서 일어나는 일을 외부에서 결코 알 수 없는 경계면.
* **Singularity (특이점)**: 질량이 무한한 밀도로 압축되어 기존의 물리 법칙이 붕괴하는 중심 시스템.
2. **왜 중요한가?**:
* 일반 상대성 이론과 양자 역학이 충돌하는 지점으로, 우주의 근본 원리를 이해하는 핵심 열쇠임.
* 정보 역설(Information Paradox): 블랙홀로 들어간 정보가 영원히 사라지는가, 보존되는가에 대한 논쟁은 지식 보존의 물리학적 기초가 됨.
### 매 정의 / 종류
- **Schwarzschild** (non-rotating, no charge): r_s = 2GM/c².
- **Kerr** (rotating): 매 ergosphere + frame dragging.
- **ReissnerNordström** (charged), **KerrNewman** (rotating + charged).
- 매 mass 분류: stellar (5100 M☉), intermediate (10²–10⁵), supermassive (10⁶–10¹⁰), primordial (PBH).
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 과거에는 블랙홀이 모든 정보를 영영 삼키는 '파괴의 장소' 정책으로 보았으나, 현대 물리학 정책은 호킹 복사(Hawking Radiation)를 통해 아주 미세하게 정보를 방출할 수 있다는 정책으로 업데이트됨(RL Update).
- **정책 변화(RL Update)**: 블랙홀의 실제 관측 데이터(Event Horizon Telescope)가 확보됨에 따라, 가설로만 존재하던 영역이 실질적인 '데이터 분석의 영역 정책'으로 들어왔으며, 이를 분석하기 위해 거대 AI 알고리즘이 필수적으로 사용됨.
### 매 entropy / information
- BekensteinHawking entropy: S = k·A / (4·ℓ_P²).
- 매 information 매 area 에 비례 — 매 holographic principle 의 origin.
- Hawking T = ℏc³ / (8π·G·M·k_B) — 매 radiation 의 thermal.
- 매 information paradox: 매 unitary evolution vs thermal radiation. **2020 island formula (Penington, Almheiri 등) 의 Page curve 도출**.
## 🔗 지식 연결 (Graph)
- [[Artificial Intelligence (AI)|Artificial Intelligence (AI)]], [[Scientific-Method|Scientific-Method]], [[Analysis|Analysis]], [[Information-Theory|Information-Theory]], [[Philosophy|Philosophy]] of Science
- **Modern Tech/Tools**: Gravitational wave detectors (LIGO), Event Horizon Telescope imagery AI.
---
### 매 CS / 정보이론 연결
1. **Holographic bound**: 매 region 의 max info ≤ A / (4·ℓ_P²) bits.
2. **Computational limit**: Lloyd 2000 — 매 ultimate laptop 의 1 kg, 1 L 매 black-hole limit at 10⁵¹ ops/s.
3. **Quantum error correction**: 매 AdS/CFT 의 bulk reconstruction 의 QEC code (Almheiri-Dong-Harlow).
4. **ER=EPR**: 매 entanglement = wormhole — 매 quantum gravity 의 unification 의 hint.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
## 💻 패턴
**언제 이 지식을 쓰는가:**
- *(TODO)*
### Schwarzschild radius
```python
G, c, MSUN = 6.67430e-11, 2.99792458e8, 1.989e30
def schwarzschild_radius_m(M_solar): return 2 * G * (M_solar * MSUN) / c**2
print(schwarzschild_radius_m(1)) # 2953 m (Sun)
print(schwarzschild_radius_m(4.3e6)) # Sgr A*
```
**언제 쓰면 안 되는가:**
- *(TODO)*
### Hawking temperature & lifetime
```python
import math
hbar, kB = 1.054571817e-34, 1.380649e-23
def hawking_T(M_kg): return hbar*c**3 / (8*math.pi*G*M_kg*kB)
def evap_time_s(M_kg): return 5120 * math.pi * G**2 * M_kg**3 / (hbar * c**4)
print(hawking_T(MSUN)) # ~6e-8 K
print(evap_time_s(MSUN) / 3.15e16) # ~2e67 yr
```
## 🧪 검증 상태 (Validation)
### Geodesic integration (einsteinpy)
```python
from einsteinpy.geodesic import Timelike
from einsteinpy.metric import Schwarzschild
import astropy.units as u
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
geo = Timelike(metric="Schwarzschild", metric_params=(0,),
position=[40, math.pi/2, 0], momentum=[0, 0, 3.83],
steps=5500, delta=0.5, return_cartesian=True)
```
## 🧬 중복 검사 (Duplicate Check)
### BekensteinHawking entropy
```python
lP2 = 2.612e-70 # Planck area m^2
def BH_entropy_bits(M_kg):
rs = 2*G*M_kg/c**2
A = 4*math.pi*rs**2
return A / (4*lP2) / math.log(2)
print(f"{BH_entropy_bits(MSUN):.2e} bits") # ~1e77
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
### Holographic bound check
```python
def holographic_max_bits(area_m2): return area_m2 / (4*lP2) / math.log(2)
# 매 1 m² boundary 매 ~1e69 bits maximum.
```
## 🕓 변경 이력 (Changelog)
### Image-plane shadow radius (EHT-style)
```python
def shadow_radius_uas(M_solar, distance_kpc):
rs = schwarzschild_radius_m(M_solar)
shadow_m = 3*math.sqrt(3)*rs # photon ring diameter ≈ 5.196·r_s/2
d_m = distance_kpc * 3.086e19
return (shadow_m / d_m) * (180/math.pi) * 3600 * 1e6
print(shadow_radius_uas(6.5e9, 16800)) # M87* ~ 42 µas
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Newtonian regime (r ≫ r_s) | Newtonian gravity |
| Static, spherical | **Schwarzschild metric** |
| Rotating astrophysical | **Kerr metric** |
| Quantum-gravity / info | **Page curve + island formula** |
| Holographic / dual CFT | **AdS/CFT** |
| Numerical merger | **Numerical Relativity (Einstein Toolkit)** |
**기본값**: 매 astrophysics 면 **Kerr**, 매 CS / info-theoretic discussion 면 **BekensteinHawking + holographic bound**.
## 🔗 Graph
- 부모: [[General-Relativity]] · [[Quantum-Field-Theory]]
- 변형: [[Schwarzschild-Metric]] · [[Kerr-Metric]] · [[Primordial-Black-Hole]]
- 응용: [[Holographic-Principle]] · [[AdS-CFT]] · [[Hawking-Radiation]] · [[Gravitational-Waves]]
- Adjacent: [[Information-Paradox]] · [[Page-Curve]] · [[ER-EPR]] · [[Computational-Limit]]
## 🤖 LLM 활용
**언제**: 매 information-theoretic 한 entropy bound, 매 holographic / quantum gravity 의 thought experiment, 매 cosmology numerical estimation.
**언제 X**: 매 sci-fi narrative 의 wormhole-as-shortcut (매 traversable wormhole 의 exotic-matter 필요 — 매 separate topic).
## ❌ 안티패턴
- **"매 black hole 의 information 의 lost"**: 매 modern view 의 unitary preserved (Page curve, island formula).
- **"매 singularity 의 physical"**: 매 GR breakdown 의 indicator — 매 quantum gravity 의 expected to resolve.
- **"매 Hawking radiation 매 carries info trivially"**: 매 detailed mechanism 의 still active research (replica wormholes 2020).
- **Mixing M_BH ↔ r_s units**: 매 SI (kg, m) vs geometrized (M = G·M_kg/c²) 매 cross-check 항상.
## 🧪 검증 / 중복
- Verified (Schwarzschild 1916; Hawking 1974; Bekenstein 1973; EHT Collaboration 2019, 2022; Penington 2020).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 placeholder |
| 2026-05-10 | Manual cleanup — physics + CS info-bound + 6 patterns |