Neuropsychology
How to read this page: This article maps the topic from beginner to expert across six levels � Remembering, Understanding, Applying, Analyzing, Evaluating, and Creating. Scan the headings to see the full scope, then read from wherever your knowledge starts to feel uncertain. Learn more about how BloomWiki works ?
Neuropsychology is the branch of psychology that deals with how the brain and the rest of the nervous system influence a person's cognition and behaviors. Neuropsychologists often focus on how injuries or illnesses of the brain affect cognitive functions and behaviors. It is the scientific bridge between Neuroscience (the study of the hardware) and Psychology (the study of the software). By performing detailed assessments of memory, language, and executive function, neuropsychologists can pinpoint brain damage, differentiate between different types of dementia, and design rehabilitation plans to help the brain recover.
Remembering
- Neuropsychology — The study of the relationship between brain function and behavior.
- Aphasia — An impairment of language, usually caused by left hemisphere damage either to Broca's area (impairing speaking) or to Wernicke's area (impairing understanding).
- Amnesia — A partial or total loss of memory.
- Agnosia — The inability to interpret sensory information even though the senses are intact (e.g., "face blindness").
- Apraxia — Difficulty with skilled movement even though the muscles are strong.
- Executive Function — High-level mental processes (planning, focus, self-control) managed by the prefrontal cortex.
- Plasticity — The brain's ability to reorganize itself by forming new neural connections.
- Lesion — Tissue destruction; can be naturally occurring (stroke) or experimental.
- Hemispheric Specialization — The idea that certain functions (like language or spatial awareness) are more dominant in one side of the brain.
- Phineas Gage — A famous case study in neuropsychology where a metal rod through the frontal lobe changed a man's personality.
- Dementia — A chronic or persistent disorder of the mental processes caused by brain disease or injury.
- Traumatic Brain Injury (TBI) — Brain dysfunction caused by an outside force, usually a violent blow to the head.
- fMRI (Functional Magnetic Resonance Imaging) — A technique for revealing blood flow and, therefore, brain activity.
- EEG (Electroencephalogram) — An amplified recording of the waves of electrical activity sweeping across the brain's surface.
Understanding
Neuropsychology is about mapping "Functions" to "Structures."
The Logic of Disconnection: Neuropsychologists learn how the brain works by seeing what happens when it breaks.
- Broca's Area (Frontal Lobe): Damage here leads to "Non-fluent" aphasia—the person knows what they want to say but can't produce the words.
- Wernicke's Area (Temporal Lobe): Damage here leads to "Fluent" aphasia—the person speaks easily but the words make no sense ("word salad").
This proves that "speaking" and "understanding" are separate processes in the brain.
The "Where" vs. "What" Streams:
- The Ventral Stream (Temporal): Helps us recognize what an object is. Damage here leads to Visual Agnosia (you can see the object but can't name it).
- The Dorsal Stream (Parietal): Helps us know where an object is and how to interact with it. Damage here leads to Optic Ataxia (you know what it is but can't reach for it correctly).
The Aging Brain: Neuropsychology is critical for distinguishing between "Normal Aging" (slight slowdown) and "Neurodegenerative Disease" (like Alzheimer's or Parkinson's). By testing specific types of memory (e.g., "Delayed Recall"), clinicians can catch dementia years before it becomes obvious to family members.
Applying
Modeling the 'Stroop Effect' (Executive Inhibition): <syntaxhighlight lang="python"> import time import random
def simulate_stroop_test(num_trials):
"""
Shows how the brain struggles when two signals conflict.
Congruent: The word 'RED' printed in Red.
Incongruent: The word 'RED' printed in Blue.
"""
total_time = 0
for _ in range(num_trials):
condition = random.choice(['congruent', 'incongruent'])
# Base reaction time
rt = 0.5
# Incongruent trials take longer due to 'Inhibitory Control'
# in the Prefrontal Cortex.
if condition == 'incongruent':
rt += 0.3 # The 'Stroop Interference'
total_time += rt
return total_time / num_trials
print(f"Average Reaction Time: {simulate_stroop_test(100):.2f} seconds")
- In neuropsychology, a large 'Stroop gap' can indicate
- frontal lobe dysfunction.
</syntaxhighlight>
- Major Assessment Tools
- MMSE (Mini-Mental State Exam) → A 30-point questionnaire used to measure cognitive impairment.
- Wisconsin Card Sorting Test → Measuring "cognitive flexibility" (the ability to change strategies).
- Rey-Osterrieth Complex Figure → Asking a patient to copy a complex drawing to test visual-spatial memory.
- Clock Drawing Test → A simple but powerful screen for spatial neglect and executive function.
Analyzing
| Left Hemisphere | Right Hemisphere |
|---|---|
| Language (Speech, Grammar) | Spatial Awareness |
| Logical Reasoning / Math | Face Recognition |
| Detail-oriented | Big-picture / Holistic |
| Controls Right side of body | Controls Left side of body |
The Split-Brain Phenomenon: In some severe epilepsy cases, the "Corpus Callosum" (the bridge between hemispheres) is cut. This leads to fascinating results: if you show an image to the right side of the brain (via the left eye), the person can't "say" what they saw (because the left brain does the talking), but they can draw it with their left hand. This proves that consciousness can be "divided."
Evaluating
Evaluating neuropsychological reports:
- Premorbid Intelligence: How smart was the person before the injury? (This is the "baseline" used to judge decline).
- Localization: Does the pattern of cognitive failure match the location of the lesion in the MRI?
- Ecological Validity: Does the person's performance on a computer test match their ability to cook a meal or manage their finances?
- Malingering: Is the patient "faking" or exaggerating their symptoms (checked using "Tests of Effort")?
Creating
Future Frontiers:
- Cognitive Remediation: Developing "Brain Games" and exercises that actually repair neural circuits rather than just teaching "tricks."
- Real-time Neuroimaging: Using "functional near-infrared spectroscopy" (fNIRS) to monitor brain activity in natural, real-world settings.
- Neural Prosthetics: Developing implants that can "restore" lost memories or bypass damaged areas of the hippocampus.
- Stem Cell Brain Repair: Understanding the neuropsychological implications of "seeding" new neurons into an injured brain.