What Is a Z-Score?
A z-score (or standard score) measures how far a value sits from the mean in standard deviation units. The reason it matters more than raw point differences is that it puts every measurement on the same scale, which means you can compare things that have nothing in common otherwise. A student who scores 85 on an exam where the class average is 80 with a standard deviation of 10 earns a z-score of 0.5, landing half a standard deviation above the group.
The real power of z-scores shows up when you need to compare across completely different scales. Whether a z-score reads 2.0 on a math test or 2.0 on a history exam, both signal performance two standard deviations above their respective group averages, which means you can finally answer questions like "did I do better on the GRE verbal or quant?" even though the two sections use different scoring systems.
The Formula
z = (x - μ) / σ
- x = the raw value you want to standardize
- μ = the mean (average) of the distribution
- σ = the standard deviation of the distribution
Z-Scores and Percentiles
Every z-score maps to a percentile via the standard normal distribution. Some commonly used values:
| Z-Score | Percentile | Meaning |
|---|---|---|
| -2.0 | 2.28% | Far below average |
| -1.0 | 15.87% | Below average |
| 0.0 | 50.00% | Exactly average |
| 1.0 | 84.13% | Above average |
| 1.96 | 97.50% | Statistically significant (p < 0.05) |
| 2.0 | 97.72% | Far above average |
Frequently Asked Questions
What is a z-score?
A z-score counts how many standard deviations separate your data point from the mean. The easiest way to think about it is as a distance marker — not in raw units, but in units of spread. Positive values sit above the mean, negative values fall below.
What does a negative z-score mean?
A negative z-score means the value falls below the mean — nothing more alarming than that. A z-score of -1.5 places you one and a half standard deviations south of average. The sign tells you direction, not magnitude.
How do I find the z-score in Excel?
Use =STANDARDIZE(x, mean, standard_dev) in Excel or Google Sheets. For example, =STANDARDIZE(85, 80, 10) returns 0.5. The STANDARDIZE function works identically across Excel 2016, 2019, 2021, and 365.
What z-score is statistically significant?
In a two-tailed test at the 0.05 significance level, any z-score beyond ±1.96 gets flagged as statistically significant. At the stricter 0.01 level, the cutoff rises to ±2.576. The 0.05 threshold remains the most common decision boundary in social science research, and studies that deviate tend to use stricter cutoffs, not looser ones.
Can z-scores be greater than 3?
Z-scores can absolutely exceed 3, but in normally distributed data only about 0.3% of observations land beyond that threshold, which means seeing one should immediately raise questions. The NIST Engineering Statistics Handbook notes that values past ±3 typically signal outliers, measurement errors, or heavy-tailed distributions that deviate from the normal assumption. In practice, scores above 4 almost always point to a data collection problem — a miscalibrated sensor, a data entry typo — rather than a genuinely extreme observation.