docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
This commit is contained in:
@@ -0,0 +1,177 @@
|
||||
---
|
||||
id: wiki-2026-0508-synergy
|
||||
title: Synergy
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [시너지, Combined Effect, Emergent Effect]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.85
|
||||
verification_status: applied
|
||||
tags: [systems-theory, business, military, emergence, combined-arms]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
tech_stack:
|
||||
language: conceptual
|
||||
framework: systems-thinking
|
||||
---
|
||||
|
||||
# Synergy
|
||||
|
||||
## 매 한 줄
|
||||
> **"매 synergy 는 1+1 > 2 — components 의 combined effect 의 sum 보다 큰 case"**. 매 systems theory (Aristotle "whole > sum"), business strategy (M&A), military combined arms 의 cross-cutting concept. 매 2026 software 의 microservice composition, AI ensemble, multi-agent coordination 의 substrate.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 origin
|
||||
- **Aristotle**: "The whole is greater than the sum of its parts" (Metaphysics).
|
||||
- **Buckminster Fuller**: synergetics — "behavior of whole systems unpredicted by parts."
|
||||
- **Ansoff (1965)**: business synergy framework — 2+2=5 effect.
|
||||
- **Combined Arms (military)**: infantry + armor + air → mutual reinforcement.
|
||||
|
||||
### 매 types
|
||||
- **Cost synergy**: shared infra → unit cost ↓ (M&A justification).
|
||||
- **Revenue synergy**: cross-sell, bundle.
|
||||
- **Operational synergy**: shared process / tech stack.
|
||||
- **Negative synergy (anti-synergy)**: cultural clash, overhead → 1+1 < 2.
|
||||
|
||||
### 매 mechanism
|
||||
- **Complementarity**: 각 part 의 strength 가 다른 part 의 weakness 의 cover.
|
||||
- **Resource sharing**: fixed cost amortization.
|
||||
- **Network effect**: connection 자체 의 value 의 source.
|
||||
- **Information sharing**: 매 knowledge transfer 의 multiplier.
|
||||
|
||||
### 매 software/AI 응용
|
||||
- **Multi-agent system**: planner + executor + verifier 의 division of labor.
|
||||
- **Ensemble learning**: weak learners 의 combine → strong (boosting, stacking).
|
||||
- **Tool-using LLM**: LLM + Python + search + KG → 매 individually 의 weak combinations 의 strong system.
|
||||
- **Microservice composition**: bounded context 의 individual deploy + integration synergy.
|
||||
|
||||
### 매 응용
|
||||
1. **AI ensemble**: 모델 vote / stack — single 보다 +5-10% accuracy.
|
||||
2. **Multi-agent (Claude + tools)**: 매 hallucination ↓ via verifier.
|
||||
3. **M&A integration**: 매 due diligence 의 synergy hypothesis 의 validation.
|
||||
|
||||
## 💻 패턴
|
||||
|
||||
### 1. Ensemble (stacking)
|
||||
```python
|
||||
from sklearn.ensemble import StackingClassifier
|
||||
from sklearn.linear_model import LogisticRegression
|
||||
from xgboost import XGBClassifier
|
||||
from sklearn.svm import SVC
|
||||
|
||||
base = [
|
||||
("xgb", XGBClassifier(n_estimators=300)),
|
||||
("svm", SVC(probability=True)),
|
||||
("lr", LogisticRegression(max_iter=1000)),
|
||||
]
|
||||
|
||||
# meta-learner combines base predictions — synergy
|
||||
stack = StackingClassifier(estimators=base, final_estimator=LogisticRegression())
|
||||
stack.fit(X_train, y_train)
|
||||
```
|
||||
|
||||
### 2. LLM + tools (synergy)
|
||||
```python
|
||||
import anthropic
|
||||
client = anthropic.Anthropic()
|
||||
|
||||
tools = [
|
||||
{"name": "python", "description": "execute Python", ...},
|
||||
{"name": "web_search", "description": "search web", ...},
|
||||
{"name": "knowledge_graph", "description": "query KG", ...},
|
||||
]
|
||||
|
||||
# LLM strength: language understanding + planning
|
||||
# Tool strength: ground truth (math, fresh info, structured)
|
||||
# Synergy: better than either alone
|
||||
resp = client.messages.create(
|
||||
model="claude-opus-4-7", tools=tools,
|
||||
messages=[{"role": "user", "content": "Compare GPU prices today and compute 10-year ROI."}]
|
||||
)
|
||||
```
|
||||
|
||||
### 3. Multi-agent (planner + executor + critic)
|
||||
```python
|
||||
def multi_agent_solve(task):
|
||||
plan = planner_llm(task) # decomposition synergy
|
||||
drafts = [executor_llm(step) for step in plan]
|
||||
critique = critic_llm(plan, drafts) # verification synergy
|
||||
if critique.has_issues:
|
||||
return multi_agent_solve(task + critique.feedback) # loop
|
||||
return drafts
|
||||
```
|
||||
|
||||
### 4. Microservice composition
|
||||
```yaml
|
||||
# Each service independently deployable; orchestration creates synergy
|
||||
services:
|
||||
user-service: { db: postgres-users, bounded_context: identity }
|
||||
order-service: { db: postgres-orders, bounded_context: commerce }
|
||||
payment-service: { db: postgres-payments, bounded_context: finance }
|
||||
notify-service: { queue: kafka, bounded_context: comms }
|
||||
|
||||
# Saga orchestration: each independent, combined → checkout flow
|
||||
```
|
||||
|
||||
### 5. Combined arms (game/sim)
|
||||
```python
|
||||
class Squad:
|
||||
def __init__(self):
|
||||
self.tank = Tank() # absorb damage
|
||||
self.infantry = Infantry() # capture
|
||||
self.medic = Medic() # sustain
|
||||
self.recon = Recon() # vision
|
||||
|
||||
def effectiveness(self):
|
||||
# Multiplicative synergy, not additive
|
||||
base = sum(u.power for u in [self.tank, self.infantry, self.medic, self.recon])
|
||||
synergy_bonus = 0.4 if self.has_all_roles() else 0
|
||||
return base * (1 + synergy_bonus)
|
||||
```
|
||||
|
||||
### 6. Synergy measurement
|
||||
```python
|
||||
def synergy_score(parts_individual, combined):
|
||||
"""Synergy index: > 1 means positive, < 1 negative."""
|
||||
return combined / sum(parts_individual)
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| Heterogeneous models | Stacking ensemble |
|
||||
| Reasoning + ground truth | LLM + tool synergy |
|
||||
| Complex pipeline | Multi-agent (specialized roles) |
|
||||
| Negative synergy risk | Decompose / decouple |
|
||||
| Single dominant component | 매 synergy 의 forced 의 X — pick winner |
|
||||
|
||||
**기본값**: heterogeneity 의 source 의 high 일 때만 synergy 의 pursue.
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[System-Theory]] · [[Emergence]]
|
||||
- 변형: [[Combined Arms (제병협동) 전술|Combined-Arms]] · [[Ensemble-Learning]] · [[Multi-Agent-System]]
|
||||
- Adjacent: [[Network-Effect]] · [[Support Insulated]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: synergy hypothesis ideation, architecture review (synergy/anti-synergy 식별).
|
||||
**언제 X**: synergy quantification (require domain measurement, LLM 의 estimate 의 unreliable).
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Synergy 의 assume without measurement**: 매 M&A 의 typical failure.
|
||||
- **Forced ensemble of similar models**: 매 correlated → no gain. heterogeneity 의 critical.
|
||||
- **Multi-agent 의 every task**: 매 simple task 의 single LLM 으로 충분 — overhead 의 큰.
|
||||
- **Microservice 의 over-decompose**: 매 distributed monolith — anti-synergy.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Aristotle Metaphysics, Ansoff "Corporate Strategy" 1965, Wolpert "No Free Lunch", Brown 2024 multi-agent debate paper).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — synergy (systems theory + business + AI ensemble + multi-agent) |
|
||||
Reference in New Issue
Block a user