Precision Calculator
Calculate precision (positive predictive value) from true positive and false positive counts.
Inputs
Precision
0.80%
Predicted Positives (TP + FP)
100
Step by step
Precision: TP / (TP + FP)
80 ÷ (80 + 20)
= 0.8000
How it works
Precision, also called positive predictive value, measures how many of the predictions labeled positive were actually correct: precision = TP / (TP + FP). High precision means few false alarms — when the model says 'positive', it's usually right. Precision says nothing about the positives it missed (false negatives); pair it with recall to see the full picture, especially when the cost of a false positive (e.g. flagging a legitimate transaction as fraud) is high.
Formula
precision = TP / (TP + FP)
- TP
- True positives
- FP
- False positives
Frequently Asked Questions
What does low precision indicate?
Low precision means a large share of the model's positive predictions are actually false positives, so the model is 'crying wolf' too often relative to how many of its positive calls are correct.
When should I prioritize precision over recall?
Prioritize precision when false positives are costly — for example, flagging legitimate emails as spam, or approving a loan application incorrectly — where you'd rather miss some true positives than act on wrong ones.
Can precision be high while recall is very low?
Yes — a model that only predicts positive when extremely confident can have near-perfect precision but miss most actual positives, resulting in very low recall; this tradeoff is why both metrics are usually reported together.