--- id: wiki-2026-0508-cognitive-reserve-theory title: Cognitive Reserve Theory category: 10_Wiki/Topics status: verified canonical_id: self aliases: [인지 예비능, cognitive reserve, brain reserve, neural redundancy, enriched environment, dementia delay] duplicate_of: none source_trust_level: A confidence_score: 0.88 verification_status: applied tags: [neuroscience, cognitive-reserve, dementia, alzheimer, brain-health, lifelong-learning, productivity, aging] raw_sources: [] last_reinforced: 2026-05-10 github_commit: pending tech_stack: language: neuroscience / behavioral applicable_to: [Productivity, Lifelong Learning, Aging Strategy, Healthspan] --- # Cognitive Reserve Theory ## 📌 한 줄 통찰 > **"매 brain 의 savings"**. 매 neural redundancy + 매 enriched environment 의 build 매 buffer. 매 dementia / brain damage 시 의 매 functional resilience. 매 modern AI 시대 의 cognitive worker 의 longevity 의 lever — 매 BDNF 와 의 complementary. ## 📖 핵심 ### 매 Stern (2002) 의 framework - **Brain reserve** (passive): 매 anatomical (volume, neuron count). - **Cognitive reserve** (active): 매 efficient + flexible network use. - → 매 same brain damage 의 매 different functional impact. ### 매 evidence - **Nun Study** (Snowdon): 매 cognitive activity 의 매 dementia 의 delay. - **Bilingual delay**: 매 bilingual 의 매 4-5 year 의 dementia 의 later. - **London taxi driver**: 매 hippocampus 의 grow. - **Education**: 매 매 year 의 dementia risk ↓ 매 7%. ### 매 build factor 1. **Education**: 매 formal + informal. 2. **Cognitive complexity** (work / hobby): 매 puzzle, 매 chess, 매 instrument. 3. **Social engagement**: 매 isolation 의 X. 4. **Physical exercise**: 매 BDNF + 매 brain volume. 5. **Diet**: 매 Mediterranean. 6. **Sleep**: 매 7-9 hour. 7. **Stress mgmt**: 매 cortisol ↓. 8. **Bilingual / polyglot**. 9. **Music / instrument**. 10. **Novelty seeking**. ### 매 protect mechanism - **Neural compensation**: 매 alternative route. - **Neural efficiency**: 매 less effort 의 same output. - **Neural capacity**: 매 reserve 의 use. ### 매 vs Brain reserve - **Brain**: 매 size + 매 count. - **Cognitive**: 매 use + 매 strategy. - **둘 다** 의 important. ### 매 modern context - **AI augment 의 risk**: 매 cognitive offload 의 reserve 의 atrophy? - **Learning vs scrolling**: 매 active vs passive. - **Skill acquisition**: 매 ongoing. - **Genuine challenge**: 매 sudoku 보다 매 어려운 것. ### 매 limit - 매 reserve 의 finite — 매 threshold 후 의 sudden decline. - 매 individual variation huge. - 매 genetic component. - 매 not all activity 의 same value. ### 매 most effective - **Genuinely novel + challenging**. - **Learning new language / instrument**. - **Complex problem-solving job**. - **Active social roles**. - **Volunteering / teaching**. ### 매 less effective - 매 passive TV. - 매 brain training app (mostly transfer X). - 매 same routine 의 repeat. - 매 social media scroll. ## 💻 패턴 (응용 — productivity / longevity) ### Reserve-building schedule ```python def cognitive_reserve_routine(): return { 'daily': { 'physical_aerobic': '30 min', 'reading_difficult': '30 min', 'social': '> 1 meaningful interaction', 'sleep': '7-9 hour', }, 'weekly': { 'novel_skill_practice': '3-5 sessions', # 매 instrument, language, etc. 'complex_problem': '1+ challenging puzzle / project', 'social_event': '1+ in-person', 'mediterranean_diet': '70%+ of meals', }, 'monthly': { 'new_experience': '1+ (travel, restaurant, exhibit)', 'volunteer / teach': '1+ session', 'health_check': 'BP, glucose, lipids', }, 'yearly': { 'major_skill_acquisition': '1 (new language milestone, music piece)', 'cognitive_screening': '1+ (after 50)', }, } ``` ### Brain age estimation (proxy) ```python def estimated_brain_age_proxy(metrics): """매 simplified — 매 medical 의 substitute X.""" age = metrics['chronological_age'] # 매 protective factors if metrics['exercise_min_per_week'] > 150: age -= 2 if metrics['social_score'] > 7: age -= 1 if metrics['reading_hours_per_week'] > 5: age -= 1 if metrics['bilingual']: age -= 4 if metrics['mediterranean_diet']: age -= 1 if metrics['sleep_quality'] > 7: age -= 1 # 매 risk factors if metrics['smoking']: age += 5 if metrics['heavy_drinking']: age += 3 if metrics['depression_unmanaged']: age += 2 if metrics['hypertension_unmanaged']: age += 2 if metrics['social_isolation']: age += 4 return age ``` ### Novelty-tracking ```python class NoveltyTracker: def __init__(self): self.activities = [] def log(self, activity, is_novel): self.activities.append({ 'date': datetime.now(), 'activity': activity, 'is_novel': is_novel, # 매 first time / new variant }) def novelty_ratio_last_30_days(self): recent = [a for a in self.activities if a['date'] > datetime.now() - timedelta(days=30)] if not recent: return 0 return sum(1 for a in recent if a['is_novel']) / len(recent) # 매 target: 20%+ novel. ``` ### Bilingual maintenance ```python def bilingual_practice_schedule(): return { 'daily': [ ('15 min', 'reading in L2'), ('15 min', 'media (podcast / video) in L2'), ], 'weekly': [ '1 conversation with native speaker', '1 writing exercise (journal / message)', ], 'monthly': [ '1 deeper learning (grammar / advanced topic)', '1 cultural immersion (film / book)', ], } ``` ### AI offload danger check ```python def ai_dependency_check(behavior): """매 AI 의 cognitive offload 가 매 reserve 의 atrophy?""" risk_signals = [] if behavior['mental_math_avoid']: risk_signals.append('No mental math') if behavior['no_handwriting']: risk_signals.append('No handwriting') if behavior['gps_for_known_routes']: risk_signals.append('GPS reliance') if behavior['llm_for_simple_problem']: risk_signals.append('LLM for trivia') if behavior['no_memorization']: risk_signals.append('No memorization') if len(risk_signals) >= 3: return f'WARN: cognitive reserve at risk: {risk_signals}' return 'OK' ``` ### Skill stack (T-shape evolution) ```python def t_shape_practice(): """매 deep specialty + 매 broad.""" return { 'deep': { 'specialty': 'ML engineering', 'practice_h_per_week': 30, }, 'broad': [ ('design', '2 h / week'), ('marketing', '2 h / week'), ('language_jp','3 h / week'), ('music', '2 h / week'), ('philosophy', '2 h / week'), ], } ``` ### Social engagement audit ```python def social_audit(week_log): deep_conversation_count = sum(1 for e in week_log if e.depth >= 7) new_person = sum(1 for e in week_log if e.first_time) weak_tie = sum(1 for e in week_log if e.relationship == 'weak') if deep_conversation_count == 0: return 'WARN: no deep conversations this week' if new_person == 0: return 'WARN: no new social exposure' return 'OK' ``` ## 🤔 결정 기준 | 상황 | Activity | |---|---| | 50+ general | Aerobic + reading + social | | Cognitive worker | Novel skill + bilingual + sleep | | Pre-retirement | Volunteer / teach + travel | | Family dementia history | Aggressive lifestyle + screening | | Solo / introvert | Online communities + correspondence | | Late life | Music + light social + walking | **기본값**: 매 daily exercise + 매 lifelong learning + 매 social + 매 sleep + 매 Mediterranean diet. ## 🔗 Graph - 부모: [[Aging]] - 변형: [[Brain-Reserve]] · [[Neural-Redundancy]] - 응용: [[BDNF]] · [[Lifelong-Learning]] - Adjacent: [[Brain-Derived Neurotrophic Factor (BDNF)]] · [[Bioenergetics]] · [[Biological-Intelligence]] · [[Chronic-Pain-Management-Protocols]] ## 🤖 LLM 활용 **언제**: 매 longevity strategy. 매 productivity routine. 매 aging plan. 매 lifelong learning design. **언제 X**: 매 medical diagnosis. 매 brain training app marketing. ## ❌ 안티패턴 - **Brain training app 의 trust**: 매 transfer effect 의 minimal. - **Passive consumption**: 매 active engagement 의 substitute X. - **Same routine 의 forever**: 매 novelty X. - **AI offload everything**: 매 reserve 의 atrophy. - **Social isolation**: 매 single biggest risk. - **Sleep skip**: 매 reserve build 의 X. - **Wait until elderly**: 매 lifetime build. ## 🧪 검증 / 중복 - Verified (Stern 2002, Nun Study, Lancet Commission on Dementia). - 신뢰도 A. - Related: [[Brain-Derived Neurotrophic Factor (BDNF)]] · [[Bioenergetics]] · [[Biological-Intelligence]] · [[Catastrophic-Forgetting]] (analog). ## 🕓 Changelog | 날짜 | 변경 | |---|---| | 2026-05-08 | Phase 1 | | 2026-05-10 | Manual cleanup — Stern + factor + 매 routine / novelty / AI dependency code |