Standardized Depression Screening Instruments
Clinical assessment tools provide standardized, validated methods for quantifying depression severity and tracking treatment response. When digitized and integrated with AI systems, these instruments enable scalable screening, continuous monitoring, and data-driven clinical decision support. Understanding these tools is essential for implementing evidence-based depression detection systems.
| Instrument | Items | Scoring Range | Clinical Cutoffs | Strengths | Use Case |
|---|---|---|---|---|---|
| PHQ-9 Patient Health Questionnaire-9 |
9 | 0-27 | ≥5 mild, ≥10 moderate, ≥15 moderately severe, ≥20 severe | Brief, free, widely adopted, maps DSM-5 criteria | Primary care screening, routine monitoring, digital health apps |
| BDI-II Beck Depression Inventory |
21 | 0-63 | ≥14 mild, ≥20 moderate, ≥29 severe | Comprehensive symptom coverage, strong psychometrics | Clinical assessment, research studies, therapy outcome tracking |
| PHQ-2 Ultra-brief screening |
2 | 0-6 | ≥3 positive screen (follow with PHQ-9) | Fastest screening, minimal burden, high sensitivity (97%) | Opportunistic screening, very large-scale deployment |
| GAD-7 Generalized Anxiety Disorder-7 |
7 | 0-21 | ≥5 mild, ≥10 moderate, ≥15 severe anxiety | Anxiety comorbidity screening, parallel to PHQ-9 | Combined anxiety-depression screening, comorbidity assessment |
| QIDS-SR16 Quick Inventory of Depressive Symptomatology |
16 | 0-27 | ≥6 mild, ≥11 moderate, ≥16 severe, ≥21 very severe | Detailed symptom assessment, sensitive to change | Treatment monitoring, clinical trials, detailed tracking |
| CES-D Center for Epidemiologic Studies Depression |
20 | 0-60 | ≥16 clinically significant | Well-validated epidemiology tool, public domain | Population screening, research studies, baseline assessment |
PHQ-9: The Gold Standard for Digital Implementation
The Patient Health Questionnaire-9 (PHQ-9) has emerged as the preferred screening tool for digital depression detection systems due to its brevity, strong psychometric properties, and public domain status. Developed by Kroenke et al. in 2001, the PHQ-9 directly corresponds to the nine DSM-5 diagnostic criteria for major depressive disorder.
PHQ-9 Structure and Scoring
Each of the nine items asks how often over the past two weeks the respondent has been bothered by specific symptoms, with responses scored as:
- 0 = Not at all
- 1 = Several days
- 2 = More than half the days
- 3 = Nearly every day
PHQ-9 Questions (DSM-5 Aligned)
- Little interest or pleasure in doing things
- Feeling down, depressed, or hopeless
- Trouble falling or staying asleep, or sleeping too much
- Feeling tired or having little energy
- Poor appetite or overeating
- Feeling bad about yourself or that you are a failure or have let yourself or your family down
- Trouble concentrating on things, such as reading the newspaper or watching television
- Moving or speaking so slowly that other people could have noticed, or the opposite - being so fidgety or restless that you have been moving around a lot more than usual
- Thoughts that you would be better off dead, or of hurting yourself in some way
Digital PHQ-9 Implementation
class DigitalPHQ9:
"""Digital implementation of PHQ-9 with scoring and interpretation"""
QUESTIONS = [
"Little interest or pleasure in doing things",
"Feeling down, depressed, or hopeless",
"Trouble falling/staying asleep, or sleeping too much",
"Feeling tired or having little energy",
"Poor appetite or overeating",
"Feeling bad about yourself or that you are a failure",
"Trouble concentrating on things",
"Moving or speaking slowly, or being fidgety/restless",
"Thoughts that you would be better off dead or hurting yourself"
]
def __init__(self):
self.responses = []
def present_question(self, question_index):
"""
Present single PHQ-9 question with response options
Returns formatted question for display
"""
if question_index >= len(self.QUESTIONS):
raise ValueError("Invalid question index")
return {
'question_number': question_index + 1,
'text': self.QUESTIONS[question_index],
'timeframe': 'Over the last 2 weeks, how often have you been bothered by:',
'options': [
{'value': 0, 'label': 'Not at all'},
{'value': 1, 'label': 'Several days'},
{'value': 2, 'label': 'More than half the days'},
{'value': 3, 'label': 'Nearly every day'}
]
}
def record_response(self, question_index, response_value):
"""Record user response with validation"""
if not 0 <= response_value <= 3:
raise ValueError("Response must be 0-3")
self.responses.append({
'question': question_index,
'value': response_value,
'timestamp': datetime.now()
})
def calculate_score(self):
"""Calculate total PHQ-9 score and severity category"""
if len(self.responses) != 9:
raise ValueError("All 9 questions must be answered")
total_score = sum(r['value'] for r in self.responses)
# Determine severity category
if total_score < 5:
severity = "Minimal/None"
recommendation = "No treatment indicated"
elif total_score < 10:
severity = "Mild"
recommendation = "Watchful waiting; consider psychotherapy"
elif total_score < 15:
severity = "Moderate"
recommendation = "Psychotherapy or medication recommended"
elif total_score < 20:
severity = "Moderately Severe"
recommendation = "Psychotherapy and medication recommended"
else:
severity = "Severe"
recommendation = "Psychotherapy and medication recommended; consider intensive treatment"
# Check for suicidal ideation (question 9)
suicide_risk = self.responses[8]['value'] > 0
return {
'total_score': total_score,
'severity': severity,
'recommendation': recommendation,
'suicide_risk_flagged': suicide_risk,
'subscale_scores': self._calculate_subscales(),
'completion_date': datetime.now()
}
def _calculate_subscales(self):
"""
Calculate cognitive-affective and somatic subscales
Helps identify symptom patterns
"""
cognitive_affective = sum(self.responses[i]['value'] for i in [0, 1, 5, 8])
somatic = sum(self.responses[i]['value'] for i in [2, 3, 4, 6, 7])
return {
'cognitive_affective': cognitive_affective,
'somatic': somatic,
'ca_percentage': (cognitive_affective / 12) * 100,
'somatic_percentage': (somatic / 15) * 100
}
Computerized Adaptive Testing (CAT)
Computerized Adaptive Testing represents the next evolution in digital assessment, using algorithms to select questions dynamically based on previous responses. CAT can achieve the same measurement precision as full-length assessments using 50-60% fewer items, reducing respondent burden while maintaining accuracy.
How CAT Works for Depression Assessment
- Item Response Theory (IRT) Foundation: Each question is calibrated for difficulty and discrimination based on large validation datasets
- Dynamic Question Selection: Algorithm selects next question based on current severity estimate to maximize information gain
- Precision-Based Termination: Testing stops when severity estimate reaches desired precision threshold
- Continuous Scoring: Provides granular severity scores rather than discrete categories
CAT-DI: CAT for Depression Inventory
The CAT-DI (Gibbons et al., 2012) demonstrated:
- Correlation r=0.95 with full 28-item inventory using only 12 adaptively selected items
- Average of 4 minutes completion time vs. 8 minutes for full assessment
- Sensitivity 93% and specificity 89% for moderate depression (≥10 on PHQ-9 equivalent)
- Reduced floor and ceiling effects through wider item difficulty range
- Superior precision at extreme severity levels (very mild and very severe)
Ecological Momentary Assessment (EMA)
Ecological Momentary Assessment involves repeated sampling of participants' current symptoms, behaviors, and contexts in real-time, in natural environments. EMA overcomes recall bias inherent in retrospective questionnaires and captures symptom variability across time and situations.
EMA Implementation for Depression Monitoring
| EMA Strategy | Schedule | Question Types | Advantages | Challenges |
|---|---|---|---|---|
| Signal-Contingent | Random prompts 3-5x daily | Current mood, stress, activity, social context | Captures natural variation, reduces recall bias | May interrupt activities, requires compliance |
| Event-Contingent | User-initiated after specific events | Trigger events, emotional responses, coping strategies | Captures relevant moments, user control | Dependent on user adherence, possible selection bias |
| End-of-Day | Daily evening assessment | Daily summary, sleep quality, medication adherence | Less burdensome, consistent timing, good compliance | Short recall period, may miss within-day variation |
| Context-Aware | Triggered by sensor data (e.g., low activity) | Mood in specific contexts, activity-affect relationships | Targets high-risk moments, personalized timing | Requires sensor integration, algorithm complexity |
Sample EMA Questions
class DepressionEMA:
"""Ecological Momentary Assessment for depression monitoring"""
# Brief mood questions for multiple daily assessments
BRIEF_QUESTIONS = [
{
'id': 'mood_current',
'text': 'How are you feeling right now?',
'type': 'slider',
'scale': [0, 10],
'labels': ['Very sad', 'Neutral', 'Very happy']
},
{
'id': 'energy_current',
'text': 'How is your energy level?',
'type': 'slider',
'scale': [0, 10],
'labels': ['Exhausted', 'Normal', 'Energetic']
},
{
'id': 'activity_current',
'text': 'What are you doing?',
'type': 'multiple_choice',
'options': ['Working', 'Socializing', 'Leisure', 'Resting', 'Other']
},
{
'id': 'social_context',
'text': 'Who are you with?',
'type': 'multiple_choice',
'options': ['Alone', 'Family', 'Friends', 'Coworkers', 'Strangers']
}
]
# End-of-day comprehensive questions
EOD_QUESTIONS = [
{
'id': 'day_mood_avg',
'text': 'Overall, how was your mood today?',
'type': 'slider',
'scale': [0, 10]
},
{
'id': 'day_stress',
'text': 'How stressful was today?',
'type': 'slider',
'scale': [0, 10]
},
{
'id': 'social_interaction',
'text': 'Did you have meaningful social interaction today?',
'type': 'yes_no_scale',
'scale': [0, 4],
'labels': ['None', 'A little', 'Some', 'Quite a bit', 'A lot']
},
{
'id': 'sleep_quality_previous',
'text': 'How well did you sleep last night?',
'type': 'slider',
'scale': [0, 10],
'labels': ['Very poorly', 'Okay', 'Very well']
}
]
def schedule_assessments(self, strategy='signal_contingent', n_daily=4):
"""
Schedule EMA assessments based on selected strategy
"""
if strategy == 'signal_contingent':
# Random times between 9 AM and 9 PM, at least 2 hours apart
import random
schedule = []
current_hour = 9
for i in range(n_daily):
hour = current_hour + random.randint(0, 2)
minute = random.randint(0, 59)
schedule.append(f"{hour:02d}:{minute:02d}")
current_hour = hour + 2
return schedule
elif strategy == 'end_of_day':
return ['20:00'] # 8 PM daily
elif strategy == 'context_aware':
# Triggered by detected low activity or social isolation
return 'sensor_triggered'
Integration with Electronic Health Records
Integrating depression screening tools into Electronic Health Record (EHR) systems enables routine screening in primary care and specialty settings. This integration supports population health management and clinical decision support.
EHR Integration Best Practices
- Workflow Integration: Embed screening into check-in process, pre-visit tablets, or patient portals to minimize clinician burden
- Automated Scoring: Instant calculation and interpretation with severity flagging for clinician review
- Decision Support Alerts: Pop-up alerts for positive screens (PHQ-9 ≥10) or suicidal ideation (item 9 >0)
- Longitudinal Tracking: Graph scores over time to visualize treatment response and identify deterioration
- Care Coordination: Automated referrals to mental health specialists triggered by severity thresholds
- Quality Metrics: Track screening rates and follow-up for quality improvement and value-based care reporting
弘益人間 (Hongik Ingan)
"Benefit All Humanity"
Digital clinical assessment tools embody 弘익人間 by making evidence-based depression screening accessible at scale. By automating administration, scoring, and interpretation, these tools enable routine screening in primary care settings worldwide, catching cases that would otherwise go undetected. Integration with EHR systems and mobile apps brings standardized clinical assessment to billions of people, democratizing access to quality mental healthcare regardless of specialist availability. This technology serves humanity by transforming screening from a specialist luxury to a universal standard of care.
Suicide Risk Assessment
Item 9 of the PHQ-9 screens for suicidal ideation: "Thoughts that you would be better off dead, or of hurting yourself in some way." Any positive response (score >0) requires immediate clinical follow-up. Digital systems must have protocols for suicide risk management.
Digital Suicide Risk Protocols
- Immediate Flagging: Any positive response on suicide item triggers immediate alert
- Crisis Resources Display: Automatically present National Suicide Prevention Lifeline (988), Crisis Text Line (text HOME to 741741), and local emergency resources
- Clinician Notification: Real-time alert sent to designated clinician for same-day contact
- Secondary Assessment: Follow-up with Columbia-Suicide Severity Rating Scale (C-SSRS) for risk stratification
- Safety Planning: Digital safety plan creation with warning signs, coping strategies, support contacts
- Elevated Monitoring: Increase EMA frequency and passive monitoring sensitivity for individuals flagged at risk
Key Takeaways
- PHQ-9 is the Digital Standard: The 9-item Patient Health Questionnaire has become the gold standard for digital depression screening due to its brevity, strong psychometrics (sensitivity 88%, specificity 85%), public domain status, and DSM-5 alignment.
- Standardized Instruments Enable Comparison: Validated tools like PHQ-9, BDI-II, and QIDS-SR16 provide standardized severity metrics that enable comparison across patients, timepoints, and studies, essential for clinical care and research.
- Computerized Adaptive Testing Reduces Burden: CAT achieves equivalent precision to full assessments using 50-60% fewer questions through dynamic item selection based on Item Response Theory, improving user experience while maintaining accuracy.
- EMA Captures Real-Time Fluctuations: Ecological Momentary Assessment through smartphone prompts 3-5x daily overcomes recall bias and captures symptom variability across time and contexts that retrospective questionnaires miss.
- EHR Integration Enables Population Screening: Embedding screening tools in electronic health record workflows supports routine screening in primary care, automated decision support, longitudinal tracking, and care coordination at scale.
- Suicide Risk Requires Immediate Protocols: Any positive response on suicidal ideation items (PHQ-9 item 9) must trigger immediate crisis resource display, clinician notification, secondary risk assessment, and safety planning.
- Multiple Assessment Modalities Serve Different Needs: Brief screeners (PHQ-2), full assessments (PHQ-9, BDI-II), adaptive tests (CAT-DI), and momentary sampling (EMA) each serve specific roles in comprehensive depression monitoring systems.
Review Questions
- Compare the PHQ-9 and BDI-II depression screening instruments. What are the key differences in length, scoring, and optimal use cases?
- Explain how Computerized Adaptive Testing (CAT) works for depression assessment. What advantages does it offer over traditional fixed-length questionnaires?
- What is Ecological Momentary Assessment (EMA) and how does it address limitations of retrospective self-report questionnaires? Describe three EMA scheduling strategies.
- Describe best practices for integrating depression screening into Electronic Health Record systems. How can this integration support population health management?
- What protocols must be in place when implementing digital depression screening to appropriately handle suicidal ideation disclosures?
- Why is the PHQ-9 particularly well-suited for digital implementation compared to other depression screening tools? Consider factors like length, validity, and accessibility.
- Explain the difference between cognitive-affective and somatic subscales in depression assessment. Why might tracking these separately provide clinical value?
- How can longitudinal tracking of PHQ-9 scores over time inform treatment decisions? What patterns would indicate treatment response vs. deterioration?