Mathsโฑ 5 min read

What Is a Z-Score and How Is It Used in Statistics?

A z-score tells you how many standard deviations a value is from the mean. It sounds technical but it's enormously useful โ€” here's a plain-English explanation with practical examples.

A z-score answers one of the most common questions in data analysis: "Is this value unusual, and if so, by how much?" Once you understand z-scores, you can compare values from completely different datasets on the same scale.

The Formula

z = (Value โˆ’ Mean) รท Standard Deviation Positive z: value is above the mean Negative z: value is below the mean z = 0: value exactly equals the mean

A Simple Example

A student scores 82 on a test where the class average is 70 and the standard deviation is 8.

z = (82 โˆ’ 70) รท 8 = 12 รท 8 = 1.5 This score is 1.5 standard deviations above the mean.

Another student scores 58 on the same test:

z = (58 โˆ’ 70) รท 8 = โˆ’12 รท 8 = โˆ’1.5 This score is 1.5 standard deviations below the mean.

What Different Z-Scores Mean

Z-ScoreMeaningPercentile (approx)
0Exactly average50th
+1.0Above average84th
+2.0Well above average98th
+3.0Exceptionally high99.9th
โˆ’1.0Below average16th
โˆ’2.0Well below average2nd

In a normal distribution, roughly 68% of values have z-scores between โˆ’1 and +1. About 95% fall between โˆ’2 and +2. Values with z-scores beyond ยฑ3 are genuinely rare โ€” less than 0.3% of data.

Comparing Across Different Scales

This is where z-scores become extremely powerful. Say a student takes two tests on the same day:

The raw scores suggest physics performance was better (65 vs 78). The z-scores reveal the opposite โ€” the history score was more exceptional relative to peers. Z-scores level the playing field between tests with different means and spreads.

Practical Uses

Medicine: Growth charts express children's height and weight as z-scores relative to reference populations. A child at z = โˆ’2 for height is at the 2nd percentile โ€” a clinical flag for growth monitoring.

Finance: The Altman Z-score predicts corporate bankruptcy risk using financial ratios combined into a composite z-score. A score below 1.81 historically indicated high bankruptcy risk.

Quality control: A machine producing parts with a measured dimension is evaluated by its z-score relative to the specification tolerance. If the process mean drifts, z-scores show exactly how many standard deviations away from specification you are.

Sports analytics: Player performance metrics are converted to z-scores to compare players who played under different team or conditions contexts.

Z-Score to Probability

Using a z-table (or statistical software), any z-score can be converted to a probability. A z-score of +1.96 corresponds to the 97.5th percentile โ€” meaning 97.5% of normally distributed values fall below it. This is why 1.96 appears constantly in statistics: a 95% confidence interval extends ยฑ1.96 standard deviations from the mean.

๐Ÿ“Š
Try it yourself โ€” free
Standard Deviation Calculator ยท no sign-up, instant results
Open Standard Deviation Calculator โ†’
โ† All Articles