Free SKILL.md scraped from GitHub. Clone the repo or copy the file directly into your Claude Code skills directory.
npx versuz@latest install hiyenwong-ai-collection-collection-skills-decision-making-lifespan-theoretical-neurosciegit clone https://github.com/hiyenwong/ai_collection.gitcp ai_collection/SKILL.MD ~/.claude/skills/hiyenwong-ai-collection-collection-skills-decision-making-lifespan-theoretical-neuroscie/SKILL.md---
name: decision-making-lifespan-theoretical-neuroscience
description: "Theoretical neuroscience perspective on understanding decision-making across the lifespan. Integrates aging research with computational frameworks including latent state modeling, dynamical systems, encoding models, representational geometry, and RNNs. Activation: decision making aging, cognitive aging, lifespan neuroscience, theoretical neuroscience decision, neural computation aging."
---
# Understanding Decision-Making Across the Lifespan Needs Theoretical Neuroscience
> Perspective paper arguing for closer integration between cognitive aging research and theoretical neuroscience, providing a rich toolkit of computational methods for mechanistic explanations of decision-making across the lifespan.
## Metadata
- **Source**: arXiv:2603.02461
- **Authors**: Michael B. Ryan, Letizia Ye, Anne K. Churchland
- **Published**: 2026-03-02
- **Category**: q-bio.NC (Neurons and Cognition)
## Core Methodology
### Key Innovation
This perspective paper identifies a critical gap: aging research relies on single-metric behavioral readouts, cross-sectional comparisons, and descriptive neural analyses, while theoretical neuroscience has developed powerful computational tools. The paper argues that integrating these tools can move aging research beyond descriptive accounts toward mechanistic explanations.
### Theoretical Toolkit for Aging Research
#### 1. Behavioral Quantification
- Moving beyond single metrics (accuracy, RT) to rich behavioral characterization
- Drift-diffusion models (DDM) adapted for aging populations
- High-dimensional behavioral phenotyping
#### 2. Latent State Modeling
- Hidden Markov Models and linear dynamical systems for neural state inference
- Identifying latent decision states that change with age
- Gaussian Process factor analysis for population-level dynamics
#### 3. Dynamical Systems Approaches
- Attractor landscape analysis for age-related cognitive changes
- Neural manifold geometry comparing young vs aged brains
- Fixed point and limit cycle analysis of decision circuits
#### 4. Encoding Models
- Stimulus and choice encoding changes across lifespan
- Comparing neural representational capacity between age groups
- Population coding efficiency metrics
#### 5. Representational Geometry
- Representational Similarity Analysis (RSA) for aging comparisons
- Geometry of neural population codes in aging
- Cross-age representational alignment
#### 6. Recurrent Neural Networks (RNNs)
- Task-optimized RNNs as models of age-related cognitive change
- Lesion/perturbation studies on trained RNNs mimicking aging
- Training RNNs with aging-inspired constraints (noise, reduced connectivity)
### Integration Framework
```
Aging Phenomenon → Theoretical Tool → Mechanistic Explanation
↓ ↓ ↓
Behavioral change → Latent modeling → State transition dynamics
Neural degradation → Dynamical systems → Attractor landscape shift
Cognitive decline → Encoding models → Representational capacity loss
```
## Implementation Guide
### Prerequisites
- Foundations in computational neuroscience
- Familiarity with systems neuroscience methods
- Access to lifespan neuroimaging/behavioral datasets
### Step-by-Step Application
1. **Identify Aging Question**: Define the specific decision-making phenomenon to study across ages
2. **Select Theoretical Framework**: Choose appropriate computational tool(s) from the toolkit
3. **Data Collection**: Design experiments with rich behavioral and neural measures
4. **Model Application**: Apply theoretical framework to compare young vs aged populations
5. **Mechanistic Interpretation**: Use model results to explain age differences mechanistically
### Code Example
```python
# Conceptual framework: Comparing decision dynamics across ages
# Using drift-diffusion model with age-dependent parameters
import numpy as np
def age_adapted_ddm(drift_rate, boundary, noise, age_factor):
"""DDM with age-modulated parameters.
Args:
drift_rate: Evidence accumulation rate
boundary: Decision boundary height
noise: Diffusion noise level
age_factor: Normalized age factor (0=young, 1=old)
"""
# Age-related parameter modulation
age_drift = drift_rate * (1 - 0.3 * age_factor) # Slower accumulation
age_boundary = boundary * (1 + 0.2 * age_factor) # More cautious
age_noise = noise * (1 + 0.4 * age_factor) # Increased noise
# Simulate evidence accumulation
evidence = np.cumsum(np.random.normal(age_drift, age_noise, 1000))
decision_time = np.argmax(np.abs(evidence) > age_boundary)
return evidence, decision_time
# Compare young vs aged decision trajectories
evidence_young, rt_young = age_adapted_ddm(1.0, 1.5, 0.5, age_factor=0.2)
evidence_old, rt_old = age_adapted_ddm(1.0, 1.5, 0.5, age_factor=0.8)
```
## Applications
- **Cognitive aging research**: Move beyond descriptive aging studies to mechanistic models
- **Lifespan decision-making**: Understand how decision circuits change with age
- **Clinical assessment**: Develop computational biomarkers for age-related cognitive decline
- **Neurorehabilitation**: Design age-appropriate cognitive interventions
- **Drug discovery**: Use computational models to evaluate cognitive enhancement in aging
## Pitfalls
- Cross-sectional designs confound age effects with cohort effects — longitudinal designs preferred
- Theoretical models may oversimplify the heterogeneity of aging trajectories
- Most computational tools were developed for young adult data — may need adaptation
- Individual differences in aging are large — group-level analyses may miss important variation
- Computational demands for fitting complex models to aging data can be high
## Key Insights
- Aging provides a "natural perturbation" for testing theories of neural computation
- Decision-making changes reflect multiple interacting mechanisms (noise, speed-accuracy tradeoff, strategy shifts)
- Theoretical frameworks can disentangle these mechanisms in ways descriptive approaches cannot
- RNN models trained with aging-inspired constraints can generate testable predictions
## Related Skills
- neural-population-dynamics
- neural-dynamics-decision-making
- computational-neuroscience-in-llm-era
- ddm-time-averaged-drift-inconsistency
- neurobiological-craving-signature