tooluniverse-neuroscience

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

Neuroscience Research Skill

神经科学研究技能

KEY PRINCIPLES: LOOK UP, DON'T GUESS — use PubMed/EuropePMC for neuroanatomy facts, WormBase for C. elegans connectome data, UniProt for neural protein properties. Verify claims with literature before answering. Use Python computation for quantitative neuroscience problems.

核心原则:查资料,勿猜测 — 使用PubMed/EuropePMC获取神经解剖学事实,WormBase获取秀丽隐杆线虫连接组数据,UniProt获取神经蛋白特性。回答前需通过文献验证结论。使用Python计算解决定量神经科学问题。

LOOK UP, DON'T GUESS

查资料,勿猜测

When uncertain about any neuroscience fact — brain region function, neural circuit connectivity, ion channel properties, neurotransmitter receptor subtypes — SEARCH databases first. A PubMed-verified answer is always more reliable than reasoning from memory. This is especially critical for neuroanatomy, where structures have precise boundaries and connectivity patterns that are easy to confuse.

当不确定任何神经科学事实——脑区功能、神经回路连接性、离子通道特性、神经递质受体亚型时,先搜索数据库。经PubMed验证的答案永远比凭记忆推理更可靠。这在神经解剖学领域尤为关键,因为脑结构具有精确的边界和连接模式,很容易混淆。

1. Computational Neuroscience Reasoning

1. 计算神经科学推理

Rate-Based Models

基于速率的模型

  • Firing rate of a neuron: r = f(I - theta), where I = total synaptic input, theta = threshold, f = transfer function (sigmoid, ReLU, or threshold-linear)
  • Balanced excitation/inhibition: in cortical networks, excitatory and inhibitory inputs are large but nearly cancel, leaving a small net drive
  • Population rate equations: tau * dr/dt = -r + f(W*r + I_ext), where W = connectivity matrix
  • Steady-state analysis: set dr/dt = 0, solve r = f(W*r + I_ext) — use fixed-point iteration or Newton's method
  • 神经元发放率:r = f(I - theta),其中I = 总突触输入,theta = 阈值,f = 传递函数(sigmoid、ReLU或阈值线性函数)
  • 兴奋/抑制平衡:在皮层网络中,兴奋性和抑制性输入强度大但几乎抵消,仅留下微小的净驱动
  • 群体速率方程:tau * dr/dt = -r + f(W*r + I_ext),其中W = 连接矩阵
  • 稳态分析:令dr/dt = 0,求解r = f(W*r + I_ext) — 使用不动点迭代或牛顿法

Integrate-and-Fire Neurons

整合-发放神经元

  • Membrane voltage dynamics: tau_m * dV/dt = -(V - V_rest) + R_m * I(t)
  • When V reaches threshold V_th: emit spike, reset to V_reset, enter refractory period tau_ref
  • Firing rate for constant input: r = 1 / (tau_ref + tau_m * ln((R_mI - V_reset) / (R_mI - V_th))) [valid when R_m*I > V_th]
  • For sub-threshold input: neuron requires fluctuations (noise) to fire — noise-driven regime
  • Key variants: LIF (leaky), EIF (exponential), AdEx (adaptive exponential), Izhikevich (2D with recovery variable)
  • 膜电压动力学:tau_m * dV/dt = -(V - V_rest) + R_m * I(t)
  • 当V达到阈值V_th时:发放动作电位,重置为V_reset,进入不应期tau_ref
  • 恒定输入下的发放率:r = 1 / (tau_ref + tau_m * ln((R_mI - V_reset) / (R_mI - V_th))) [当R_m*I > V_th时有效]
  • 亚阈值输入:神经元需要波动(噪声)才能发放——噪声驱动模式
  • 主要变体:LIF(漏电型)、EIF(指数型)、AdEx(自适应指数型)、Izhikevich(含恢复变量的二维模型)

Synaptic Plasticity

突触可塑性

  • STDP (Spike-Timing-Dependent Plasticity):
    • Pre-before-post (positive dt): LTP (potentiation) — synapse strengthened
    • Post-before-pre (negative dt): LTD (depression) — synapse weakened
    • Window shape: typically exponential decay with tau_+ ~ 20ms (LTP) and tau_- ~ 20ms (LTD)
  • Hebbian learning: "cells that fire together wire together" — correlation-based; unstable without normalization
  • BCM theory: sliding threshold — low postsynaptic activity → LTD, high → LTP; threshold slides with average activity
  • Homeostatic plasticity: synaptic scaling adjusts all synapses multiplicatively to maintain target firing rate
  • STDP(脉冲时序依赖可塑性):
    • 前脉冲先于后脉冲(dt为正):LTP(长时程增强)——突触强度增强
    • 后脉冲先于前脉冲(dt为负):LTD(长时程抑制)——突触强度减弱
    • 时间窗形状:通常呈指数衰减,tau_+ ~ 20ms(LTP),tau_- ~ 20ms(LTD)
  • 赫布学习:"同时发放的神经元连接在一起"——基于相关性;无归一化时不稳定
  • BCM理论:滑动阈值——突触后活动低→LTD,活动高→LTP;阈值随平均活动滑动
  • 稳态可塑性:突触缩放以乘法方式调整所有突触,维持目标发放率

Network Dynamics

网络动力学

  • Mean-field theory: replace individual neurons with population-averaged firing rates; self-consistency equation r = f(Jrsqrt(K) + I_ext) where K = number of connections
  • Balanced networks: E/I balance emerges when sqrt(K)*J ~ O(1); firing rate ~ (mu - theta) / tau where mu = mean input, theta = threshold
  • Chaos transition: in random networks, chaos onset at g_c = 1 (gain parameter); above g_c, autocorrelation decays, Lyapunov exponent > 0
  • Oscillations: gamma (30-80 Hz) from E-I loops (PING model), theta (4-8 Hz) from slower inhibition or hippocampal circuits, alpha (8-12 Hz) from thalamo-cortical loops
  • 平均场理论:用群体平均发放率替代单个神经元;自洽方程r = f(Jrsqrt(K) + I_ext),其中K = 连接数
  • 平衡网络:当sqrt(K)*J ~ O(1)时出现E/I平衡;发放率 ~ (mu - theta) / tau,其中mu = 平均输入,theta = 阈值
  • 混沌转变:在随机网络中,增益参数g_c = 1时出现混沌起始;g_c以上时,自相关衰减,李雅普诺夫指数>0
  • 振荡:伽马波(30-80 Hz)源于E-I环路(PING模型),theta波(4-8 Hz)源于较慢的抑制或海马回路,alpha波(8-12 Hz)源于丘脑-皮层环路

Quantitative Problem-Solving Strategy

定量问题解决策略

  1. Identify the model type (single neuron, network, plasticity rule)
  2. Write down the governing equations with all parameters
  3. ALWAYS use Python for multi-step calculations — do not attempt mental arithmetic
  4. Check units: voltages in mV, currents in nA or pA, time constants in ms, rates in Hz
  5. Sanity check: cortical firing rates are typically 1-20 Hz; tau_m ~ 10-20 ms; V_th ~ -50 mV

  1. 确定模型类型(单个神经元、网络、可塑性规则)
  2. 写下包含所有参数的控制方程
  3. 务必使用Python进行多步骤计算——不要尝试心算
  4. 检查单位:电压单位为mV,电流单位为nA或pA,时间常数单位为ms,发放率单位为Hz
  5. 合理性检查:皮层神经元发放率通常为1-20 Hz;tau_m ~ 10-20 ms;V_th ~ -50 mV

2. Neuroanatomy Reasoning

2. 神经解剖学推理

CRITICAL: Look Up Neuroanatomy

关键:查询神经解剖学资料

Brain region functions, boundaries, and connectivity are precise anatomical facts. When asked about specific regions, nuclei, or tracts:
  1. Search PubMed or EuropePMC with specific anatomical terms
  2. For connectivity: search "[region A] projection [region B]" or "[region] afferents efferents"
  3. For function: search "[region] lesion" or "[region] function review"
脑区功能、边界和连接性是精确的解剖学事实。当被问及特定区域、核团或传导束时:
  1. 使用特定解剖学术语搜索PubMed或EuropePMC
  2. 查找连接性:搜索"[区域A] projection [区域B]"或"[region] afferents efferents"
  3. 查找功能:搜索"[region] lesion"或"[region] function review"

Human Brain — Major Divisions

人脑——主要分区

  • Cerebral cortex: frontal (motor, executive), parietal (somatosensory, spatial), temporal (auditory, memory), occipital (visual)
  • Basal ganglia: caudate + putamen (striatum) → GPi/SNr (output) → thalamus; direct pathway (facilitate movement) vs indirect pathway (suppress movement); dopamine from SNc modulates both
  • Cerebellum: coordination, timing, motor learning; receives mossy fibers (pontine nuclei) and climbing fibers (inferior olive); Purkinje cells are sole output of cerebellar cortex
  • Brainstem: midbrain (superior/inferior colliculi, substantia nigra, red nucleus), pons (pontine nuclei, respiratory centers), medulla (cardiovascular/respiratory centers, cranial nerve nuclei)
  • Thalamus: relay station — every sensory modality (except olfaction) synapses here before cortex; also receives cortical feedback (corticothalamic loops)
  • Hippocampus: declarative memory formation; trisynaptic circuit: EC → DG → CA3 → CA1 → EC; place cells, grid cells
  • 大脑皮层:额叶(运动、执行功能)、顶叶(体感、空间认知)、颞叶(听觉、记忆)、枕叶(视觉)
  • 基底神经节:尾状核+壳核(纹状体)→ GPi/SNr(输出)→ 丘脑;直接通路(促进运动)vs 间接通路(抑制运动);黑质致密部(SNc)的多巴胺调节两条通路
  • 小脑:协调、计时、运动学习;接收苔藓纤维(脑桥核)和爬行纤维(下橄榄核);浦肯野细胞是小脑皮层的唯一输出神经元
  • 脑干:中脑(上/下丘、黑质、红核)、脑桥(脑桥核、呼吸中枢)、延髓(心血管/呼吸中枢、颅神经核)
  • 丘脑:中继站——除嗅觉外的所有感觉模态均在此突触后传入皮层;同时接收皮层反馈(皮层-丘脑环路)
  • 海马体:陈述性记忆形成;三突触回路:EC → DG → CA3 → CA1 → EC;位置细胞、网格细胞

Model Organism Neuroanatomy

模式生物神经解剖学

  • C. elegans: 302 neurons, complete connectome mapped; use
    WormBase_search
    for gene expression, neuron identity, connectivity data
  • Drosophila: mushroom body (learning/memory), antennal lobe (olfaction), central complex (navigation); ~100,000 neurons; FlyWire connectome
  • Zebrafish: transparent larvae for whole-brain imaging; Mauthner cells (escape response); use
    Alliance_search_genes
    for orthologs
  • Mouse: Allen Brain Atlas for gene expression; use PubMed for circuit tracing studies (rabies virus, optogenetics)
  • 秀丽隐杆线虫(C. elegans):302个神经元,完整连接组已绘制;使用
    WormBase_search
    获取基因表达、神经元识别、连接性数据
  • 果蝇(Drosophila):蕈状体(学习/记忆)、触角叶(嗅觉)、中央复合体(导航);约100,000个神经元;FlyWire连接组
  • 斑马鱼:透明幼体可用于全脑成像;Mauthner细胞(逃逸反应);使用
    Alliance_search_genes
    获取直系同源基因
  • 小鼠:Allen脑图谱用于基因表达;使用PubMed查找环路示踪研究(狂犬病毒、光遗传学)

Reasoning Pattern for "Where in the Brain?" Questions

"脑区定位"问题的推理模式

  1. Identify the function asked about (motor, sensory, memory, emotion, language)
  2. Map to candidate regions from general knowledge
  3. VERIFY with PubMed search: "[function] brain region fMRI" or "[function] lesion study"
  4. Check for lateralization (language → usually left hemisphere)
  5. Distinguish cortical vs subcortical involvement

  1. 确定所询问的功能(运动、感觉、记忆、情绪、语言)
  2. 根据常识映射到候选区域
  3. 通过PubMed搜索验证:"[function] brain region fMRI"或"[function] lesion study"
  4. 检查偏侧化(语言→通常为左半球)
  5. 区分皮层与皮层下参与情况

3. Clinical Neurology Reasoning

3. 临床神经病学推理

Cranial Nerve Examination

颅神经检查

  • Map symptom → nerve → nucleus → lesion site:
    • CN I (olfactory): anosmia — cribriform plate fracture, frontal lobe lesion
    • CN II (optic): visual field defects — optic nerve, chiasm, tract, radiation, cortex
    • CN III (oculomotor): ptosis, "down and out" eye — midbrain, posterior communicating artery aneurysm
    • CN IV (trochlear): difficulty looking down-and-in — dorsal midbrain
    • CN V (trigeminal): facial sensation loss, jaw deviation — pons, Meckel's cave
    • CN VI (abducens): medial strabismus — pons (long intracranial course, vulnerable to raised ICP)
    • CN VII (facial): upper vs lower face weakness distinguishes UMN (forehead spared) vs LMN (all ipsilateral)
    • CN VIII (vestibulocochlear): hearing loss, vertigo — peripheral vs central distinction critical
    • CN IX-X (glossopharyngeal, vagus): dysphagia, uvula deviation
    • CN XI (accessory): SCM and trapezius weakness
    • CN XII (hypoglossal): tongue deviation toward lesion side
  • 症状→神经→核团→病变部位映射:
    • 颅神经I(嗅神经):嗅觉丧失——筛板骨折、额叶病变
    • 颅神经II(视神经):视野缺损——视神经、视交叉、视束、视辐射、皮层
    • 颅神经III(动眼神经):上睑下垂、眼球"向下向外"——中脑、后交通动脉瘤
    • 颅神经IV(滑车神经):向下向内视物困难——中脑背侧
    • 颅神经V(三叉神经):面部感觉丧失、下颌偏斜——脑桥、Meckel腔
    • 颅神经VI(外展神经):内斜视——脑桥(颅内行程长,易受颅内压升高影响)
    • 颅神经VII(面神经):上/下脸肌无力区分上运动神经元(UMN,额部保留)vs 下运动神经元(LMN,同侧全部受累)
    • 颅神经VIII(前庭蜗神经):听力损失、眩晕——区分外周 vs 中枢病变至关重要
    • 颅神经IX-X(舌咽、迷走神经):吞咽困难、悬雍垂偏斜
    • 颅神经XI(副神经):胸锁乳突肌和斜方肌无力
    • 颅神经XII(舌下神经):舌头偏向病变侧

Stroke Localization

卒中定位

  • Anterior circulation (ICA, MCA, ACA): MCA → contralateral face/arm > leg weakness, aphasia (dominant), neglect (non-dominant); ACA → contralateral leg > arm weakness
  • Posterior circulation (vertebrobasilar): brainstem signs (cranial nerve palsies + crossed signs), cerebellar ataxia, visual field defects
  • Cortical vs subcortical: cortical → higher function deficits (aphasia, neglect, agnosia); subcortical (lacunar) → pure motor/sensory without cortical signs
  • Key rule: crossed signs (ipsilateral face + contralateral body) = brainstem lesion
  • 前循环(颈内动脉ICA、大脑中动脉MCA、大脑前动脉ACA):MCA→对侧面部/上肢>下肢无力,失语(优势半球),忽略(非优势半球);ACA→对侧下肢>上肢无力
  • 后循环(椎基底动脉):脑干体征(颅神经麻痹+交叉体征)、小脑共济失调、视野缺损
  • 皮层 vs 皮层下:皮层→高级功能缺损(失语、忽略、失认);皮层下(腔隙性)→纯运动/感觉障碍,无皮层体征
  • 关键规则:交叉体征(同侧面部+对侧躯体)= 脑干病变

Upper vs Lower Motor Neuron

上运动神经元 vs 下运动神经元

FeatureUMN LesionLMN Lesion
ToneIncreased (spastic)Decreased (flaccid)
ReflexesHyperreflexia, Babinski+Hyporeflexia/areflexia
AtrophyMinimal (disuse)Prominent, early
FasciculationsAbsentPresent
DistributionPyramidal patternSpecific nerve/root
特征UMN病变LMN病变
肌张力增高(痉挛)降低(弛缓)
反射反射亢进,巴宾斯基征阳性反射减弱/消失
萎缩轻微(废用性)显著,早期出现
肌束震颤
分布模式锥体束模式特定神经/神经根

Neurodegenerative Disease Patterns

神经退行性疾病模式

  • Alzheimer's: amyloid plaques + tau tangles; hippocampus → entorhinal cortex → neocortex; episodic memory loss first
  • Parkinson's: alpha-synuclein in substantia nigra pars compacta; dopamine depletion → bradykinesia, rigidity, resting tremor; search
    UniProt_search
    for SNCA, LRRK2, PARK7
  • ALS: upper AND lower motor neuron signs; TDP-43 pathology; SOD1, C9orf72 genes
  • Huntington's: CAG repeat expansion in HTT; caudate atrophy; chorea, psychiatric symptoms, cognitive decline
  • 阿尔茨海默病:淀粉样斑块+ tau缠结;海马→内嗅皮层→新皮层;首发症状为情景记忆丧失
  • 帕金森病:黑质致密部的α-突触核蛋白沉积;多巴胺耗竭→运动迟缓、rigidity(肌张力增高)、静止性震颤;使用
    UniProt_search
    搜索SNCA、LRRK2、PARK7
  • ALS:同时出现上、下运动神经元体征;TDP-43病理;SOD1、C9orf72基因相关
  • 亨廷顿病:HTT基因CAG重复扩增;尾状核萎缩;舞蹈症、精神症状、认知下降

Reasoning Pattern for Clinical Neuro Questions

临床神经问题的推理模式

  1. Localize the lesion: what neurological structure explains ALL the findings?
  2. Single lesion principle: prefer one lesion that explains everything over multiple lesions
  3. Determine mechanism: vascular (sudden onset), inflammatory (subacute), degenerative (gradual), neoplastic (progressive with mass effect)
  4. VERIFY with literature if uncertain about anatomy or presentation

  1. 定位病变:哪个神经结构能解释所有症状?
  2. 单一病变原则:优先选择能解释所有症状的单一病变,而非多个病变
  3. 确定机制:血管性(突发起病)、炎症性(亚急性)、退行性(渐进性)、肿瘤性(进行性伴占位效应)
  4. 若对解剖学或临床表现不确定,通过文献验证

4. Neurophysiology Reasoning

4. 神经生理学推理

Action Potential

动作电位

  • Resting potential ~ -70 mV (K+ equilibrium ≈ -90 mV, Na+ ≈ +60 mV, weighted by conductances)
  • Nernst equation: E_ion = (RT/zF) * ln([ion]_out / [ion]_in) ≈ 61.5/z * log10([out]/[in]) mV at 37C
  • Goldman equation for resting potential: accounts for relative permeabilities of Na+, K+, Cl-
  • AP phases: depolarization (Na+ channels open) → overshoot → repolarization (K+ channels open, Na+ inactivate) → hyperpolarization (K+ channels slow to close)
  • Refractory periods: absolute (no stimulus can fire) ~ 1 ms; relative (stronger stimulus needed) ~ 2-4 ms
  • 静息电位~ -70 mV(K+平衡电位≈-90 mV,Na+≈+60 mV,由电导加权)
  • 能斯特方程:E_ion = (RT/zF) * ln([ion]_out / [ion]_in) ≈ 61.5/z * log10([out]/[in]) mV(37℃时)
  • 静息电位的戈德曼方程:考虑Na+、K+、Cl-的相对通透性
  • 动作电位时相:去极化(Na+通道开放)→ 超射 → 复极化(K+通道开放,Na+通道失活)→ 超极化(K+通道关闭缓慢)
  • 不应期:绝对不应期(任何刺激都无法触发发放)~1 ms;相对不应期(需更强刺激)~2-4 ms

Synaptic Transmission

突触传递

  • Chemical synapse: AP → Ca2+ entry (N-type, P/Q-type channels) → vesicle fusion (SNARE complex) → neurotransmitter release → postsynaptic receptor binding
  • Excitatory: glutamate → AMPA (fast, Na+/K+), NMDA (slow, Ca2+, voltage-dependent Mg2+ block)
  • Inhibitory: GABA → GABA_A (fast, Cl-), GABA_B (slow, K+, G-protein coupled); glycine in spinal cord
  • Neuromodulators: dopamine, serotonin, norepinephrine, acetylcholine — volume transmission, slower, alter circuit gain

  • 化学突触:动作电位→Ca2+内流(N型、P/Q型通道)→囊泡融合(SNARE复合体)→神经递质释放→突触后受体结合
  • 兴奋性:谷氨酸→AMPA(快速,Na+/K+)、NMDA(缓慢,Ca2+,电压依赖性Mg2+阻断)
  • 抑制性:GABA→GABA_A(快速,Cl-)、GABA_B(缓慢,K+,G蛋白偶联);脊髓中的甘氨酸
  • 神经调制物:多巴胺、血清素、去甲肾上腺素、乙酰胆碱——容积传递,速度慢,改变回路增益

5. Available Tools

5. 可用工具

ToolUse ForKey Parameters
PubMed_search_articles
Neuroanatomy facts, clinical neurology, circuit studies
query
,
limit
EuropePMC_search_articles
Broader literature including preprints
query
,
limit
WormBase_search
C. elegans neurons, connectome, gene expression
query
Alliance_search_genes
Cross-species gene search (mouse, fly, fish, worm)
query
UniProt_search
Neural proteins (ion channels, receptors, disease genes)
query
,
organism
proteins_api_search
Protein features, domains, variants
query
NCBI_search_gene
Gene info, orthologs, expression
query
ClinVar_search_variants
Neurological disease variants
gene
,
condition
GWAS_search_associations
Neurological trait associations
query
Orphanet_search_diseases
Rare neurological diseases
query
KEGG_get_pathway
Neural signaling pathways
pathway_id
OpenTargets_search_target
Drug targets in neurological diseases
query
工具用途关键参数
PubMed_search_articles
神经解剖学事实、临床神经病学、环路研究
query
,
limit
EuropePMC_search_articles
更广泛的文献,包括预印本
query
,
limit
WormBase_search
秀丽隐杆线虫神经元、连接组、基因表达
query
Alliance_search_genes
跨物种基因搜索(小鼠、果蝇、斑马鱼、线虫)
query
UniProt_search
神经蛋白(离子通道、受体、疾病基因)
query
,
organism
proteins_api_search
蛋白特性、结构域、变异体
query
NCBI_search_gene
基因信息、直系同源基因、表达
query
ClinVar_search_variants
神经系统疾病变异体
gene
,
condition
GWAS_search_associations
神经系统性状关联
query
Orphanet_search_diseases
罕见神经系统疾病
query
KEGG_get_pathway
神经信号通路
pathway_id
OpenTargets_search_target
神经系统疾病的药物靶点
query

Tool Selection Strategy

工具选择策略

  1. Neuroanatomy question: PubMed first — search "[structure] [function/connectivity]"
  2. Ion channel / receptor question: UniProt — search protein name with organism
  3. Disease gene question: ClinVar + GWAS + Orphanet
  4. Connectome / circuit question: WormBase (C. elegans), PubMed (other organisms)
  5. Computational question: Write Python code — do not guess numerical answers
  6. Clinical neurology question: PubMed + reasoning frameworks above; verify anatomy before answering

  1. 神经解剖学问题:优先使用PubMed——搜索"[structure] [function/connectivity]"
  2. 离子通道/受体问题:使用UniProt——搜索带物种的蛋白名称
  3. 疾病基因问题:使用ClinVar + GWAS + Orphanet
  4. 连接组/回路问题:使用WormBase(秀丽隐杆线虫),PubMed(其他生物)
  5. 计算问题:编写Python代码——不要猜测数值答案
  6. 临床神经病学问题:使用PubMed + 上述推理框架;回答前验证解剖学信息

6. C. elegans Connectome Lookups

6. 秀丽隐杆线虫连接组查询

For C. elegans neural circuit questions, ALWAYS use
WormBase_search
to look up specific synapse and connectivity data. Do not guess neural connections from general knowledge.
  • ASJ neuron projections: the main projection target of ASJ axons is PVQ (verified in WormBase connectome data), NOT AIA. Always check actual synapse counts rather than inferring from circuit diagrams.
  • Search WormBase with the specific neuron name to get its pre/postsynaptic partners and projection targets.
对于秀丽隐杆线虫神经回路问题,**务必使用
WormBase_search
**查询特定突触和连接性数据。不要凭常识猜测神经连接。
  • ASJ神经元投射:ASJ轴突的主要投射靶点是PVQ(经WormBase连接组数据验证),而非AIA。务必查看实际突触计数,而非从回路图推断。
  • 使用特定神经元名称搜索WormBase,获取其突触前/后伙伴及投射靶点。

7. Common Pitfalls

7. 常见误区

  • Confusing brain regions: The hippocampus is NOT in the frontal lobe. The substantia nigra is in the midbrain, NOT the basal ganglia (though functionally linked). Always verify.
  • Mixing up neurotransmitter receptors: GABA_A is ionotropic (Cl-), GABA_B is metabotropic (G-protein). NMDA requires both glutamate AND glycine/D-serine co-agonist.
  • Wrong units in computation: Membrane time constants are in ms (not seconds). Firing rates are in Hz (spikes/s). Conductances are in nS or mS/cm2.
  • Assuming all neurons fire fast: Cortical neurons fire at 1-20 Hz on average; only specific cell types (e.g., fast-spiking interneurons) sustain >100 Hz.
  • Ignoring lateralization: Language is left-lateralized in ~95% of right-handers. Spatial attention is right-lateralized. Always consider which hemisphere.
  • 脑区混淆:海马体不在额叶内。黑质位于中脑,而非基底神经节(尽管功能相关)。务必验证。
  • 神经递质受体混淆:GABA_A是离子型(Cl-),GABA_B是代谢型(G蛋白偶联)。NMDA需要谷氨酸和甘氨酸/D-丝氨酸共同激动剂。
  • 计算单位错误:膜时间常数单位为ms(而非秒)。发放率单位为Hz(次/秒)。电导单位为nS或mS/cm²。
  • 假设所有神经元发放快:皮层神经元平均发放率为1-20 Hz;仅特定细胞类型(如快发放中间神经元)能维持>100 Hz的发放。
  • 忽略偏侧化:约95%的右利手者语言功能偏侧化于左半球。空间注意力偏侧化于右半球。务必考虑半球差异。