[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
+131 -43
View File
@@ -2,67 +2,155 @@
id: wiki-2026-0508-creativity-research
title: Creativity Research
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: [P-Reinforce-AUTO-CRES-001]
aliases: [Creativity Studies, Creative Cognition Research]
duplicate_of: none
source_trust_level: A
confidence_score: 0.82
tags: [auto-reinforced, creativity-Research, Psychology, Innovation, divergent-thinking, neurobiology]
confidence_score: 0.9
verification_status: applied
tags: [creativity, psychology, cognition, research]
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: en
framework: research-methods
---
# [[Creativity Research|Creativity Research]]
# Creativity Research
## 📌 한 줄 통찰 (The Karpathy Summary)
> "새로움의 기원을 찾아서: 신선하고 가치 있는 무언가를 만들어내는 인간의 능력을 심리적, 뇌과학적, 전산적 관점에서 분석하여 창의성의 프로세스를 이해하고 증명하려는 학문적 탐구."
## 한 줄
> **"매 creativity 의 measurable cognitive process — 매 mystical talent 아님"**. 매 1950 Guilford APA address 가 field 의 launch — 매 divergent thinking, fluency, originality 의 quantifiable. 매 2026 의 LLM-augmented co-creation, fMRI 의 default mode network 연구, computational creativity 의 active.
## 📖 구조화된 지식 (Synthesized Content)
창의성 연구(Creativity Re[[Search|Search]])는 창의적 사고의 본질과 이를 촉진하는 요인을 탐구합니다.
## 매 핵심
1. **4P 모델 (James Rhodes)**:
* **Person**: 창의적 개인의 특성 (호기심, 개방성 등).
* **Process**: 영감이 떠오르고 구체화되는 과정 (Incubation -> Insight).
* **Product**: 산출물의 새로움과 적절성 평가.
* **Press**: 창의성을 자극하거나 억압하는 환경적 요인.
2. **인지적 메커니즘**:
* **Divergent Thinking**: 하나의 문제에서 수많은 대안을 생성하는 확산적 사고.
* **Convergent Thinking**: 가장 적합한 하나를 선택하는 수렴적 사고. ([[Combinatorial-Optimization|Combinatorial-Optimization]]과 대비)
### 매 4P framework (Rhodes 1961)
- **Person**: 매 traits — openness, tolerance for ambiguity, intrinsic motivation.
- **Process**: 매 stages — preparation → incubation → illumination → verification (Wallas 1926).
- **Product**: 매 novel + useful (Stein 1953 의 standard definition).
- **Press**: 매 environment — domain, field gatekeepers (Csikszentmihalyi systems model).
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
- **과거 데이터와의 충돌**: 과거에는 창의성을 '천재의 신비로운 영감' 정책으로 치부했으나, 현대 정책은 정밀한 뇌 영상 분석과 전산 모델링 정책을 통해 창의성 또한 '정보의 재조합과 패턴 발견 정책'임을 과학적으로 규명함(RL Update). ([[Computational Creativity|Computational Creativity]]와 연결)
- **정책 변화(RL Update)**: AI 시대의 창의성 교육 정책에서, 단순히 '그림을 그리는 스킬'보다 문제의 본질을 꿰뚫고 AI에게 질문을 던지는 '프롬프트적 창의성 정책'과 '비판적 시각 정책'이 새로운 연구의 흐름이 됨.
### 매 측정 (psychometrics)
- **TTCT** (Torrance Tests of Creative Thinking): 매 fluency, flexibility, originality, elaboration.
- **AUT** (Alternative Uses Task): 매 brick 의 uses 나열 — 매 divergent thinking 의 standard.
- **CAT** (Consensual Assessment Technique, Amabile): 매 expert judges 의 product rating.
- **RAT** (Remote Associates): 매 convergent creativity (3 cue → 1 link word).
## 🔗 지식 연결 (Graph)
- [[Computational Creativity|Computational Creativity]], [[Arts|Arts]], [[Psychology & Behavior|Psychology & Behavior]], [[Philosophy|Philosophy]] of Science, [[Concept Mapping|Concept Mapping]]
- **Modern Tech/Tools**: Torrance Tests of Creative Thinking (TTCT), fMRI brain mapping.
---
### 매 응용
1. K-12 design thinking curriculum.
2. 매 R&D ideation workshop (IDEO 의 protocols).
3. 매 LLM prompt engineering 의 creativity scaffolding.
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
## 💻 패턴
**언제 이 지식을 쓰는가:**
- *(TODO)*
### Divergent thinking score (AUT)
```python
def aut_score(responses: list[str], reference_corpus: dict[str, int]) -> dict:
"""Score divergent-thinking output: fluency, flexibility, originality."""
fluency = len(responses)
categories = {classify_category(r) for r in responses}
flexibility = len(categories)
# originality = 1 - frequency in reference corpus (lower freq = more original)
total = sum(reference_corpus.values()) or 1
originality = sum(
1 - (reference_corpus.get(r.lower(), 0) / total) for r in responses
) / max(fluency, 1)
return {"fluency": fluency, "flexibility": flexibility, "originality": originality}
```
**언제 쓰면 안 되는가:**
- *(TODO)*
### LLM-augmented divergent ideation
```python
from anthropic import Anthropic
## 🧪 검증 상태 (Validation)
client = Anthropic()
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
def co_creative_ideation(prompt: str, n: int = 20) -> list[str]:
"""Use Claude as a divergent-thinking partner — temperature high for variance."""
msg = client.messages.create(
model="claude-opus-4-7",
max_tokens=2000,
temperature=1.0,
messages=[{
"role": "user",
"content": f"Generate {n} maximally diverse, novel uses for: {prompt}. "
f"Span categories. Avoid clichés. One per line."
}],
)
return [line.strip("- ") for line in msg.content[0].text.splitlines() if line.strip()]
```
## 🧬 중복 검사 (Duplicate Check)
### Consensual Assessment (CAT) aggregation
```python
import numpy as np
from scipy.stats import pearsonr
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
def cat_reliability(ratings: np.ndarray) -> float:
"""Inter-rater reliability via Cronbach's alpha across expert judges."""
k = ratings.shape[1]
item_var = ratings.var(axis=0, ddof=1).sum()
total_var = ratings.sum(axis=1).var(ddof=1)
return (k / (k - 1)) * (1 - item_var / total_var)
```
## 🕓 변경 이력 (Changelog)
### Incubation effect simulation
```python
def incubation_benefit(initial_attempt_score: float, incubation_minutes: int) -> float:
"""Sio & Ormerod 2009 meta-analysis: ~0.3 SD boost after incubation."""
if incubation_minutes < 5:
return initial_attempt_score
return initial_attempt_score + 0.3 * min(incubation_minutes / 30, 1.0)
```
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
### Default Mode Network proxy (resting-state correlation)
```python
def dmn_creativity_correlation(dmn_connectivity: float, ecn_connectivity: float) -> float:
"""Beaty et al. 2018: high creativity = strong DMN ↔ ECN coupling."""
return dmn_connectivity * ecn_connectivity # simplified product proxy
```
### Equivalence-class feature (Mednick RAT)
```python
def remote_associates_solve(cues: tuple[str, str, str], assoc_db: dict) -> str | None:
"""Find a single word that associates with all three cues."""
sets = [set(assoc_db.get(c, [])) for c in cues]
common = set.intersection(*sets)
return next(iter(common), None)
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Quick classroom screen | TTCT short form |
| Real-world product creativity | CAT with 3+ domain experts |
| Lab divergent thinking | AUT + originality corpus |
| Insight problem solving | RAT or compound remote associates |
| LLM augmentation | high-temperature ideation + human convergent filter |
**기본값**: 매 AUT + CAT for research; 매 LLM-as-divergent-partner + human-as-convergent-filter for applied work.
## 🔗 Graph
- 부모: [[Cognitive Psychology]] · [[Creativity (Csikszentmihalyi Flow)]]
- 변형: [[Divergent Thinking]] · [[Convergent Thinking]] · [[Computational Creativity]]
- 응용: [[Design Thinking]] · [[Brainstorming]] · [[LLM Co-creation]]
- Adjacent: [[Default Mode Network]] · [[Insight Problem Solving]] · [[Innovation Management]]
## 🤖 LLM 활용
**언제**: 매 divergent ideation phase — 매 broad space exploration, 매 cliché breaking, 매 cross-domain analogies.
**언제 X**: 매 convergent evaluation alone — 매 LLM 의 novelty calibration 의 약함 (training data bias toward common). 매 originality scoring 시 의 corpus-based metric 결합 필요.
## ❌ 안티패턴
- **Brainstorming = creativity 의 동일시**: 매 group brainstorming 의 production blocking — 매 nominal groups 가 실제로 더 많은 ideas (Diehl & Stroebe 1987).
- **Originality 만 추적**: 매 useful 의 손실 — 매 novel + useful 가 정의.
- **Single judge CAT**: 매 inter-rater reliability 의 unverifiable.
- **TTCT 만 의 의존**: 매 ecological validity 의 약함 — real-world creative achievement prediction 의 modest (r ≈ 0.2-0.3).
## 🧪 검증 / 중복
- Verified (Guilford 1950, Torrance 1966, Amabile 1982, Beaty et al. 2018 NeuroImage).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — 4P framework, AUT/CAT/RAT measurement, LLM co-creation patterns 추가 |