The Z-Score Explained: How Far From Average Is Your Number?
A plain-English guide to the z-score: how to measure how many standard deviations a value sits from the mean, the 68-95-99.7 rule, and reading percentiles.
The Z-Score Explained: How Far From Average Is Your Number?
Two students take two different exams. One scores 85, the other scores 78. Who did better? You cannot answer that until you know what the rest of the class did. A raw number on its own is almost meaningless — it only becomes useful once you place it against the average and the spread of everyone else. That is exactly the job of the z-score.
A z-score (also called a standard score) tells you how many standard deviations a value sits above or below the mean. It is the single most useful idea in introductory statistics, because it strips a number out of its original units and puts it on a universal scale where any two values become directly comparable.
The formula, in one line
Here is the entire thing:
z = (x − mean) / standard deviation
That is it. You subtract the mean from your value to find the raw distance, then divide by the standard deviation to express that distance in "standard-deviation units." The result is a clean, unit-free number.
A few quick reads of the sign and size:
- z = 0 means the value is exactly average.
- A positive z means above the mean; negative means below it.
- The magnitude tells you how unusual the value is. A z of +0.3 is unremarkable. A z of +3 is rare.
A worked example
Suppose a class takes a test where the mean is 70 and the standard deviation is 10. A student scores 85. Plug it in:
z = (85 − 70) / 10 = 15 / 10 = 1.5
So this score sits 1.5 standard deviations above the class average. That is a strong result — and crucially, "1.5" carries the same meaning no matter what the test was. If you dropped the same student's 85 into the Z-Score Calculator it would also report the percentile (about the 93rd), telling you the score beat roughly 93% of the class. You did not need a printed z-table to learn that.
When I am grading and want to compare performance across two assignments with different difficulty, this is the first thing I reach for. Raw points lie to you — a 78 on a brutal exam can be a far better performance than an 85 on an easy one. I convert both to z-scores, and suddenly the comparison is honest. The student who is +1.0 on the hard test genuinely outperformed the one who is +0.5 on the easy test, even though the second raw score is higher.
The 68-95-99.7 rule
If your data is roughly bell-shaped (a normal distribution), z-scores come with a handy rule of thumb that lets you reason about probability in your head:
- About 68% of all values fall within ±1 standard deviation (z between −1 and +1).
- About 95% fall within ±2 standard deviations.
- About 99.7% fall within ±3 standard deviations.
This is sometimes called the empirical rule, and it is why a z-score is such a fast sanity check. A value at z = +1 is fairly common — roughly 16% of values are higher. A value at z = +2 is uncommon, with only about 2.5% above it. And a value past z = +3 is genuinely rare: fewer than 1 in 700 readings land that far out on the high side. You can eyeball how surprising a number is just by knowing its z.
There is one z worth memorizing: 1.96. Because 95% of a normal distribution falls between z = −1.96 and z = +1.96, that pair of cutoffs is the backbone of the 95% confidence interval and the 0.05 significance threshold you meet everywhere in statistics.
Turning a z-score into a percentile
A percentile answers a different question: "What fraction of the distribution falls below this value?" It is just the left-tail probability of the normal curve, written as a percent. Some anchor points:
- z = 0 → 50th percentile (the mean splits the distribution in half).
- z = +1 → about the 84th percentile.
- z = −1 → about the 16th percentile.
- z = +2 → about the 97.7th percentile.
A common mistake is to read the percentile as the right tail. The percentile is always the share below you, so a z of +2 is the ~97.7th percentile, not the 2.3rd. If you actually want the proportion sitting above your value, that is one minus the percentile. For deeper work with the shape of these curves, the probability distribution visualizer lets you see exactly which slice of area a given z carves off.
Where z-scores actually earn their keep
Comparing scores across different scales. This is the classic use. Heights, test marks, reaction times — anything measured on a different scale becomes comparable once standardized. A height at z = −0.4 and a quiz score at z = +1.2 now live on the same ruler.
Spotting outliers. Set a threshold like |z| > 3 and you have an automatic filter for suspicious readings. In a quality-control batch of machined parts, any measurement more than three standard deviations from the mean is worth pulling and inspecting, because a normal process produces such extremes only about 0.27% of the time.
Reading percentiles without a table. Growth charts, standardized tests, and fitness benchmarks all translate a raw measurement into "you are taller than 80% of your peers." That translation is a z-score followed by a percentile lookup. If you want to express the result as a clean share, the percentage calculator handles the final "X% of people scored lower" step.
Setting cutoffs. The process also runs in reverse. If you want the score that marks the 90th percentile, find the z that corresponds to 90% (about 1.2816), then rearrange the formula: x = mean + z × standard deviation. That converts an abstract percentile target back into a concrete cutoff number.
One caveat worth keeping
The percentile mapping leans on the assumption that your data is roughly normal. The z-score itself — the raw "how many standard deviations away" figure — is always computable and always meaningful as a distance. But translating that z into a percentile through the bell curve only works when the underlying distribution actually looks like a bell. For heavily skewed income data or a bimodal dataset, z = +2 does not reliably mean the 97.7th percentile. Sanity-check the shape of your data before you trust the percentile, and you will avoid the most common way people misread a standard score.
Once that habit is in place, the z-score becomes one of those small tools you use constantly: a fast, honest way to answer the question "how far from average is this, really?"
Made by Toolora · Updated 2026-06-13