Sensitivity Calculator
How it Works
01Enter True Positives (TP)
Count of condition-positive cases the test correctly identifies.
02Enter False Negatives (FN)
Count of condition-positive cases the test incorrectly misses.
03Get Sensitivity
Sensitivity = TP/(TP+FN) — the true positive rate.
04Interpret False Negative Rate
FNR = 1 − Sensitivity — the fraction of true positives missed.
Introduction
A test with high sensitivity rarely misses true cases — nearly all positive individuals are correctly identified. This is critical in screening contexts where missing a true case (false negative) is more dangerous than a false alarm. For example, HIV screening tests, cancer screenings, and COVID-19 tests are optimized for high sensitivity to minimize missed cases.
Sensitivity is calculated as: Sensitivity = TP / (TP + FN), where TP is the number of true positives and FN is the number of false negatives. A sensitivity of 0.95 means the test correctly identifies 95% of all truly positive cases, while 5% are missed (false negatives).
Sensitivity is directly related to the false negative rate: FNR = 1 − Sensitivity. If sensitivity = 0.95, the false negative rate = 0.05 (5%). In clinical settings, the tradeoff between sensitivity and specificity is visualized using the ROC (Receiver Operating Characteristic) curve — a plot of sensitivity vs (1 − specificity) across all possible classification thresholds.
This calculator also computes the negative predictive value (NPV) when prevalence data is provided, giving a complete picture of what a negative test result means in the context of your target population.
The formula
Sensitivity = TP / (TP + FN)
Where:
False Negative Rate (FNR):
FNR = FN / (TP + FN) = 1 − Sensitivity
Negative Predictive Value (NPV):
NPV = TN / (TN + FN) — requires TN data
2×2 Contingency Table:
| | Test+ | Test− |
|Condition+| TP | FN |
|Condition−| FP | TN |
Calculation In Practice
Sensitivity = 185 / (185 + 15)
= 185 / 200
= 0.925 (92.5%)
False Negative Rate = 1 − 0.925 = 0.075 (7.5%)
Interpretation: The test misses 7.5% of true cancer cases.
Typical Use Cases
Medical Diagnostic Tests
COVID-19 and Infectious Disease Testing
Cancer Screening Programs
Machine Learning Classification
Security Systems
Technical Reference
Key Relationships:
ROC Curve:
SnNout Mnemonic:
Sensitive test, Negative result = rules Out condition
Key Takeaways
However, high sensitivity often comes at the cost of lower specificity — more false alarms. This tradeoff is inherent in diagnostic testing and is navigated by selecting appropriate test thresholds, sequencing tests (high-sensitivity screening followed by high-specificity confirmation), and considering disease prevalence using positive and negative predictive values.
Always interpret sensitivity alongside specificity, prevalence, and the clinical consequences of false negatives vs false positives to make fully informed diagnostic and treatment decisions.