PERSONAL FINANCE · 206 TOOLS · 0 SIGN-UP
TallyBench / Z-Score Calculator
// Z-SCORE CALCULATOR

Standard score from a value, mean, and standard deviation.

Find a z-score from a raw value, or work backward from a z-score to the value it represents.

Educational tool. Double-check critical calculations independently.
Z-Score0

What is a z-score?

A z-score expresses how many standard deviations a value sits from the mean: z = (x − mean) / standard deviation. It standardizes values so data measured on different scales — test scores, heights, reaction times — can all be compared on the same footing.

How do you interpret a z-score?

A positive z-score means the value is above the mean; a negative z-score means it's below. The size of the number shows how many standard deviations away it is — a z-score of 0.5 is close to typical, while a z-score of 3 is far from typical in either direction.

What is considered an "unusual" z-score?

Commonly, a z-score with an absolute value greater than 2 or 3 is considered notably unusual in many contexts — these are general guidelines used across statistics, not strict cutoffs that apply identically to every situation.

How is this different from your Standard Deviation Calculator?

The Standard Deviation Calculator computes standard deviation FROM a full data set. This tool assumes you already have a mean and standard deviation and uses them to standardize one specific value (or work backward from a z-score to a value).

Worked example: a test score of 85, with a class mean of 75 and standard deviation of 10: z = (85−75)/10 = 1.5 — one and a half standard deviations above average. Working backward, a z-score of 1.5 with that same mean and standard deviation maps back to exactly 85.

What a z-score actually tells you

A z-score converts a raw value into "how many standard deviations from the mean" — which makes numbers from completely different scales comparable. A test score of 85 where the mean is 70 and the standard deviation is 10 gives z = 1.5. That single number says more than the raw score does, because it carries the context of the whole distribution.

If the data is normally distributed, z = 1.5 corresponds to roughly the 93.32nd percentile — about 93% of values fall below it. That translation only holds for a normal distribution, which is the assumption people most often forget they are making.

The landmarks worth memorising

Population or sample?

Use the population standard deviation when you genuinely have every member of the group — every student in the class, every item produced. Use the sample standard deviation, which divides by n−1 rather than n, when your data is a subset you are generalising from. The sample version is always slightly larger, which correctly reflects the extra uncertainty of not having measured everything.

With small samples the difference is substantial. On eight data points, dividing by 7 instead of 8 changes the result by roughly 7%.

Where z-scores mislead

A z-score is only as meaningful as the distribution behind it. On strongly skewed data — income, house prices, waiting times — the mean sits away from the typical value and z-scores stop mapping cleanly onto percentiles. A z of 1.5 on skewed data does not mean the 93rd percentile, and treating it as though it does is a common and consequential error.

Check the shape of the distribution before trusting the percentile. The Standard Deviation Calculator and Mean, Median and Mode Calculator together will tell you quickly: if the mean and median are far apart, the data is skewed.