[G1-Sync] Manual knowledge update
This commit is contained in:
@@ -2,94 +2,146 @@
|
||||
id: wiki-2026-0508-assumptions-vs-facts
|
||||
title: Assumptions vs Facts
|
||||
category: 10_Wiki/Topics
|
||||
status: needs_review
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [P-Reinforce-AUTO-ASVF-001]
|
||||
aliases: [Fact-Assumption Distinction, Premise vs Evidence]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.98
|
||||
tags: [auto-reinforced, assumptions, facts, critical-thinking, Scientific-Method, Logic]
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [reasoning, epistemology, decision-making, critical-thinking]
|
||||
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: unspecified
|
||||
framework: unspecified
|
||||
language: python
|
||||
framework: na
|
||||
---
|
||||
|
||||
# [[Assumptions-vs-Facts|Assumptions-vs-Facts]]
|
||||
# Assumptions vs Facts
|
||||
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
> "생각의 거품 걷어내기: 내가 당연히 그렇다고 믿는 '가정'과 실제 현실에서 입증된 '발생한 사실'을 철저히 분리하여, 잘못된 믿음 위에 모래성을 쌓지 않도록 경계하는 지적 정직성."
|
||||
## 매 한 줄
|
||||
> **"매 fact 는 매 verifiable observation, 매 assumption 은 매 unverified premise"**. 매 둘 의 conflation 매 most decision failure 의 root. 매 military intelligence (CIA Tradecraft Primer), 매 software engineering (RFC, design doc), 매 LLM agent reasoning (chain-of-thought 매 assumption 명시) 모두 의 핵심 discipline.
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
가정과 사실의 구분은 비판적 사고와 과학적 방법론의 가장 기초적인 단계입니다.
|
||||
## 매 핵심
|
||||
|
||||
1. **Fact (사실)**:
|
||||
* 객관적으로 증명 가능하며, 누구나 동일한 조건에서 관찰하거나 확인 가능한 데이터.
|
||||
* "이 서버의 응답 속도는 50ms이다."
|
||||
2. **Assumption (가정)**:
|
||||
* 사실이 밝혀지지 않았거나 확인하지 않은 상태에서 '그럴 것이다'라고 믿고 전제하는 것.
|
||||
* "사용자는 빠른 응답 속도를 좋아할 것이다." (비록 타당해 보일지라도 검증 전까지는 가정임)
|
||||
3. **가정의 위험성**:
|
||||
* **Implicit Assumptions**: 스스로 가정하고 있다는 사실조차 깨닫지 못하는 무의식적 전제들이 의사결정의 거대한 오류를 만듦.
|
||||
* **Assumption Stacking**: 검증되지 않은 가정 위에 또 다른 가정을 쌓으면 작은 균열에도 전체 시스템이 붕괴함.
|
||||
### 매 정의
|
||||
- **Fact**: 매 currently verifiable claim — 매 measurement, 매 reproducible observation, 매 authoritative record.
|
||||
- **Assumption**: 매 not verified, 매 taken as true 매 reasoning 진행 위해. 매 implicit / explicit.
|
||||
- **Inference**: 매 fact + assumption → 매 conclusion.
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
|
||||
- **과거 데이터와의 충돌**: 과거의 직관적 의사결정 정책은 '전문가의 감(Assumption)'에 의존했으나, 현대의 데이터 기반 정책은 모든 핵심 전제를 '가설 검정(Hypothesis [[Testing|Testing]])'을 통해 사실로 확인하려는 정책적 결벽증을 가짐(RL Update).
|
||||
- **정책 변화(RL Update)**: 프로젝트 관리 정책(예: Agile)에서, 불확실한 가정을 최대한 빨리 사실로 확인하기 위해 '최소 기능 제품(MVP)'을 만들고 피드백을 받는 '가정 검증 속도 최적화 정책'이 표준이 됨.
|
||||
### 매 Verification spectrum
|
||||
- **Hard fact**: 매 measurement (e.g., latency = 142ms p95).
|
||||
- **Soft fact**: 매 expert testimony / consensus (e.g., "FDA-approved").
|
||||
- **Reasonable assumption**: 매 base rate / 매 prior (e.g., "user 매 attention < 10s").
|
||||
- **Speculative assumption**: 매 untested premise (e.g., "competitor 매 Q4 launch").
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
- [[Analysis|Analysis]], [[Arguing-by-Counterexample|Arguing-by-Counterexample]], [[Scientific Communication|Scientific Communication]], Rationality, [[Rapid-Prototyping|Rapid-Prototyping]]
|
||||
- **Modern Tech/Tools**: A/B testing platforms, Root cause [[Analysis|Analysis]] tools (5 Whys).
|
||||
---
|
||||
### 매 응용
|
||||
1. **Design doc**: 매 "Assumptions" section 별도 — 매 reviewer 검증.
|
||||
2. **Intelligence analysis**: 매 ACH (Analysis of Competing Hypotheses).
|
||||
3. **Postmortem**: 매 implicit assumption 적출 — 매 next-time fact 로 verify.
|
||||
4. **LLM CoT**: 매 reasoning chain 에서 매 assumption 의 explicit tag.
|
||||
|
||||
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
|
||||
## 💻 패턴
|
||||
|
||||
**언제 이 지식을 쓰는가:**
|
||||
- *(TODO)*
|
||||
### Pattern 1: 매 Design doc template
|
||||
```markdown
|
||||
## Facts
|
||||
- 매 current p95 latency: 240ms (verified via 매 grafana 2026-05-09).
|
||||
- 매 user count: 1.2M MAU (analytics dashboard).
|
||||
|
||||
**언제 쓰면 안 되는가:**
|
||||
- *(TODO)*
|
||||
## Assumptions
|
||||
- [A1] 매 traffic grow 30% YoY (prior: 2024-2025 trend).
|
||||
- [A2] 매 redis cluster 매 horizontal scale 가능 (vendor docs, untested at our scale).
|
||||
|
||||
## 🧪 검증 상태 (Validation)
|
||||
## Inferences
|
||||
- A1 + Facts → 매 Q4 capacity = 1.56M MAU.
|
||||
- A2 + Facts → 매 cache layer 매 bottleneck 의 X.
|
||||
|
||||
- **정보 상태:** needs_review
|
||||
- **출처 신뢰도:** A
|
||||
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
|
||||
|
||||
## 🧬 중복 검사 (Duplicate Check)
|
||||
|
||||
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
|
||||
- **처리 방식:** UPDATE (자동 정규화)
|
||||
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
|
||||
|
||||
## 🕓 변경 이력 (Changelog)
|
||||
|
||||
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|
||||
|------|-----------|-----------|--------|
|
||||
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
|
||||
|
||||
## 💻 코드 패턴 (Code Patterns)
|
||||
|
||||
**패턴 1:** *(TODO: 이 프로젝트 컨벤션 반영한 구조 스켈레톤)*
|
||||
|
||||
```text
|
||||
# TODO
|
||||
## Validation plan
|
||||
- A1: 매 monthly reforecast.
|
||||
- A2: 매 Q3 load-test 8x current.
|
||||
```
|
||||
|
||||
## 🤔 의사결정 기준 (Decision Criteria)
|
||||
### Pattern 2: 매 ACH (Analysis of Competing Hypotheses)
|
||||
```python
|
||||
import numpy as np
|
||||
hypotheses = ["H1: 매 supply shock", "H2: 매 demand drop", "H3: 매 competitor"]
|
||||
evidence = ["E1: price up", "E2: query down", "E3: rival ad spike"]
|
||||
# 매 매 evidence × hypothesis: consistent (+1), inconsistent (-1), N/A (0)
|
||||
M = np.array([
|
||||
# E1, E2, E3
|
||||
[+1, 0, 0], # H1
|
||||
[-1, +1, 0], # H2
|
||||
[ 0, +1, +1], # H3
|
||||
])
|
||||
scores = M.sum(axis=1)
|
||||
for h, s in zip(hypotheses, scores):
|
||||
print(h, s)
|
||||
# 매 lowest disconfirmed = 매 most likely (CIA tradecraft logic)
|
||||
```
|
||||
|
||||
**선택 A를 써야 할 때:**
|
||||
- *(TODO)*
|
||||
### Pattern 3: 매 Assumption tagging in CoT
|
||||
```python
|
||||
def reason_with_tags(query: str) -> str:
|
||||
return llm(f"""
|
||||
Answer step by step. For every claim:
|
||||
- Tag [FACT: source] if verifiable.
|
||||
- Tag [ASSUMP: confidence 0-1] if untested.
|
||||
- Tag [INFER] if derived.
|
||||
|
||||
**선택 B를 써야 할 때:**
|
||||
- *(TODO)*
|
||||
Q: {query}
|
||||
""")
|
||||
```
|
||||
|
||||
**기본값:**
|
||||
> *(TODO)*
|
||||
### Pattern 4: 매 Premortem (assumption stress-test)
|
||||
```markdown
|
||||
Imagine the project failed in 6 months. List the 5 most likely
|
||||
failed assumptions. For each, design a 2-week experiment to test
|
||||
it now.
|
||||
```
|
||||
|
||||
## ❌ 안티패턴 (Anti-Patterns)
|
||||
### Pattern 5: Confidence score 매 calibration
|
||||
```python
|
||||
predictions = [] # list of (claim, confidence, actual_outcome)
|
||||
brier = sum((c - a)**2 for _, c, a in predictions) / len(predictions)
|
||||
print(f"Brier score: {brier:.3f}") # 매 lower = better calibration
|
||||
```
|
||||
|
||||
- **[안티패턴]:** *(TODO: 무엇을 하면 안 되는가 + 이유 + 대신 무엇을)*
|
||||
## 매 결정 기준
|
||||
| 상황 | Treat as |
|
||||
|---|---|
|
||||
| 매 metric in current dashboard | Fact (with date) |
|
||||
| 매 vendor capability claim | Soft fact, 매 verify if critical |
|
||||
| 매 future user behavior | Assumption — 매 explicit |
|
||||
| 매 "everyone knows" | 매 strong assumption — 매 challenge |
|
||||
| 매 LLM output | Assumption until cross-checked |
|
||||
|
||||
**기본값**: 매 reasoning 시작 시 매 explicit "Facts" / "Assumptions" 분리. 매 implicit assumption 의 surface — 매 brittle.
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[Belief-Revision]] · [[Bayesian-Updating]]
|
||||
- 변형: [[Bayes-Theorem]] · [[Hypostatic-Abstraction]]
|
||||
- 응용: [[Problem Solving Process]] · [[Process_Reflection_Template]]
|
||||
- Adjacent: [[Big-Picture]] · [[Outside-Thinking]] · [[Anticipation]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: 매 agent design — 매 [FACT]/[ASSUMP] tagging 매 hallucination detection 도움. 매 reasoning trace audit.
|
||||
**언제 X**: 매 creative ideation — 매 over-tagging 매 flow 방해.
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Implicit assumption**: 매 unmentioned premise — 매 reviewer 못 catch.
|
||||
- **Fact inflation**: 매 weak evidence 의 hard fact 처럼 표현.
|
||||
- **Confidence theater**: 매 "obviously" / "clearly" — 매 hidden assumption marker.
|
||||
- **Single-source fact**: 매 1 source = 매 still soft. 매 triangulate.
|
||||
- **Stale fact**: 매 6개월 전 metric — 매 currently fact 인지 재검증.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (CIA Tradecraft Primer 2009, Heuer *Psychology of Intelligence Analysis*, Tetlock *Superforecasting*).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — ACH + 매 design-doc pattern + LLM CoT tagging |
|
||||
|
||||
Reference in New Issue
Block a user