[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,142 @@
id: wiki-2026-0508-mutually-exclusive-and-collectiv
title: Mutually Exclusive and Collectively Exhaustive (MECE)
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: []
aliases: [MECE, ME-CE, 상호배타-전체포괄]
duplicate_of: none
source_trust_level: A
confidence_score: 0.92
tags: [uncategorized]
confidence_score: 0.95
verification_status: applied
tags: [reasoning, problem-solving, consulting, structured-thinking, taxonomy]
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: markdown
framework: unspecified
---
# [[Mutually Exclusive and Collectively Exhaustive (MECE)|Mutually Exclusive and Collectively Exhaustive (MECE]]
# Mutually Exclusive and Collectively Exhaustive (MECE)
## 📌 한 줄 통찰 (The Karpathy Summary)
데이터나 문제를 범주화할 때, 항목 간 **'상호 배제(중복 없음)'**와 **'전체 포괄(누락 없음)'**을 충족하도록 나누는 논리적 프레임워크로 전략 컨설팅의 핵심 기초입니다.
## 한 줄
> **"매 항목 겹치지 않고 매 합쳐 전체"**. Barbara Minto가 McKinsey에서 정형화한 매 categorization 원칙으로, 매 합리적 의사소통과 매 logical decomposition의 매 backbone이다. 2026 LLM agent의 task partitioning에서도 매 동일 원칙이 적용된다.
## 📖 구조화된 지식 (Synthesized Content)
- **상호 배제 (Mutually Exclusive):** 각 정보나 하위 범주가 고유하고 독립적이어야 합니다. 즉, 하나의 항목이 두 개 이상의 범주에 속해서는 안 되며, 이는 분석 시 이중 계산(Double-counting)이나 혼란을 방지합니다 [61-63].
- **전체 포괄 (Collectively Exhaustive):** 선택한 범주들을 모두 합쳤을 때 전체 문제나 데이터 세트를 100% 포괄해야 합니다. 누락된 부분이 있으면 중요한 전략적 기회나 위험을 놓칠 수 있습니다 [62, 64, 65].
- **실전 활용:** 이윤 하락 문제를 분석할 때 수익(Price × Volume)과 비용(Fixed Costs + Variable Costs)으로 나누는 수익성 프레임워크가 가장 대표적인 MECE 적용 사례입니다 [66, 67].
- **함정 피하기:** 고객을 '취미'와 '관심사'로 나누는 것은 중복이 발생하여 Non-MECE 방식이 되며 [63, 68], '기타(Other)'라는 모호한 범주를 남용해 억지로 CE 요건을 맞추는 것도 지양해야 합니다 [57].
## 매 핵심
## 🔗 지식 연결 (Graph)
- **Related Topics:** [[McKinsey Problem Solving|McKinsey Problem Solving]], [[Minto Pyramid Principle|Minto Pyramid Principle]]
- **Projects/Contexts:** [[Issue Tree|Issue Tree]] Development, Market Segmentation
- **Contradictions/Notes:** 현실 세계의 복잡한 시스템에서는 범주 간 완전히 분리되지 않는 상호의존성이 존재할 수 있으므로, MECE만 고집할 경우 문제의 유기적 본질을 지나치게 단순화(False completeness)할 위험이 있습니다 [10, 41, 69].
### 매 두 조건
- **Mutually Exclusive (ME)**: 매 두 카테고리의 교집합 = ∅.
- **Collectively Exhaustive (CE)**: 매 카테고리들의 합집합 = 전체.
---
*Last updated: 2026-04-27*
### 매 typical partition 패턴
- Binary split: A vs Not-A.
- Process steps: Before / During / After.
- Stakeholders: Internal / External.
- Time: Past / Present / Future.
- Quantitative axes: Price × Volume = Revenue.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### 매 응용
1. Issue tree / logic tree decomposition.
2. Market sizing (top-down vs bottom-up).
3. SQL GROUP BY 카테고리 설계.
4. LLM agent subtask split (no overlap, no gap).
**언제 이 지식을 쓰는가:**
- *(TODO)*
## 💻 패턴
**언제 쓰면 안 되는가:**
- *(TODO)*
### MECE check (Python)
```python
def is_mece(categories, universe):
union = set().union(*categories)
if union != universe:
return False, "not exhaustive", universe - union
for i, a in enumerate(categories):
for b in categories[i+1:]:
if a & b:
return False, "overlap", a & b
return True, "MECE", None
```
## 🧪 검증 상태 (Validation)
### Decision-tree style decomposition
```markdown
- 매출 감소 원인
- 가격 (P)
- 수량 (Q) [P와 ME — 가격 효과 통제 후]
- 믹스 (M) [구성 변화]
→ P + Q + M ≈ ΔRevenue (CE check)
```
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### Pandas group MECE validation
```python
def validate_mece_groups(df, group_col, total_col):
grouped = df.groupby(group_col)[total_col].sum()
return abs(grouped.sum() - df[total_col].sum()) < 1e-6
```
## 🧬 중복 검사 (Duplicate Check)
### Set cover (greedy CE construction)
```python
def greedy_cover(universe, sets):
chosen, remaining = [], set(universe)
while remaining:
best = max(sets, key=lambda s: len(s & remaining))
chosen.append(best)
remaining -= best
return chosen
```
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
### LLM prompt for MECE plan
```python
prompt = """
Decompose the task into MECE subtasks:
- Subtasks must NOT overlap (ME).
- Subtasks must cover the full task (CE).
- Output JSON list. Verify by sketching the union set.
Task: {task}
"""
```
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
### MECE + Pareto (80/20 prioritization)
```python
def mece_pareto(buckets, values, top=0.8):
sorted_buckets = sorted(zip(buckets, values), key=lambda x: -x[1])
cum, picked = 0, []
for b, v in sorted_buckets:
picked.append(b); cum += v
if cum >= top * sum(values): break
return picked
```
- **과거 데이터와의 충돌:** 없음
- **정책 변화:** 없음
## 매 결정 기준
| 상황 | Decomposition axis |
|---|---|
| Revenue analysis | P × Q × M |
| Cost analysis | Fixed vs Variable |
| Customer | New vs Existing |
| Process | Stage gates |
| Bug triage | Severity × Component |
## 🕓 변경 이력 (Changelog)
**기본값**: Quantitative MECE (numerical sum-check 가능).
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 🔗 Graph
- 부모: [[Mental Models]] · [[Pyramid-Principle]]
- 변형: [[Logic Trees]] · [[Issue Tree]]
- 응용: [[Consulting-Frameworks]] · [[LLM-Agent-Planning]] · [[Root-Cause-Analysis]]
- Adjacent: [[Decision Theory]] · [[Set-Theory]]
## 🤖 LLM 활용
**언제**: Task decomposition, structured analysis, taxonomy design, agent planning.
**언제 X**: Highly entangled / coupled systems where clean partition is impossible.
## ❌ 안티패턴
- **Pseudo-MECE**: 매 표면 MECE이나 매 실제 overlap.
- **Forced exhaustiveness**: "Other" 버킷으로 매 모든 잔여 처리.
- **Wrong axis**: 매 분석 목적과 무관한 축.
## 🧪 검증 / 중복
- Verified (Minto "The Pyramid Principle"; Rasiel "The McKinsey Way").
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — MECE conditions + validators |