Z-Scores & the Normal Distribution
An IQ of 130. A test score of 78. On their own, raw scores like these don't tell you much: is that high? Rare? It depends entirely on the rest of the data. A z-score fixes this by answering one clean question: how many standard deviations from the mean is this value?
The normal distribution
Lots of measurements (heights, reaction times, test scores, measurement errors) pile up in the same characteristic shape: a symmetric bell, tall in the middle, thinning out toward the edges. It's called the normal distribution, and it's fully described by just two numbers: its mean μ (mu, where the peak sits) and its standard deviation σ (sigma, how wide the bell is). It's also just one member of a whole family of shapes. You can meet the others in the Distribution Playground.
Textbooks call a curve like this one a density curve: an idealized histogram, smoothed out and scaled so that the total area beneath it is exactly 1. That scaling is the whole reason it is useful. Any area under the curve is the proportion of observations lying in that stretch, so "what fraction of people score below 130" and "how much of the curve sits left of 130" are one question asked in two vocabularies. Areas are proportions here, and they always add up to 1.
The 68–95–99.7 rule: in any normal distribution, about 68% of values fall within 1 SD of the mean, about 95% within 2 SDs, and about 99.7% within 3 SDs. Drag the score below past the ±1σ, ±2σ, ±3σ marks and watch the percentile confirm it.
🎮 Z-Score Explorer
Drag the score and read off its z-score and the share of the curve on each side. It opens on IQ scores, built to have a mean of 100 and a standard deviation of 15, and the URL can point it at any normal distribution you like.
What a z-score actually is
The recipe is short: take how far the score is from the mean, then express that gap in standard-deviation units.
z = (x − μ) / σ
An IQ of 115 is (115 − 100) / 15 = +1.0, exactly one SD above average. An IQ of 70 is (70 − 100) / 15 = −2.0, two SDs below. The sign tells you which side of the mean you're on; the size tells you how unusual the value is. A z of 0 is dead average; a z beyond ±2 is genuinely rare (outside the middle 95%).
From a z-score to an area
The explorer reads the percentile off the curve for you. On paper you do it in two steps: standardize the value, then look the z up in a table of areas. Adult heights in one population run close to normal with a mean of 164 cm and a standard deviation of 6 cm. What proportion of people are shorter than 170 cm?
z = (170 − 164) / 6 = 1.00
A standard normal table gives .8413 for z = 1.00, so about 84% of people are shorter than 170 cm. The proportion taller is whatever area is left over: 1 − .8413 = .1587, a shade under 16%. Point the explorer at that distribution with this link and it draws the same picture.
Every question of this kind is one of three moves, and the third is built from the first two.
- Area to the left is what the table prints. Standardize, find the cell, read it.
- Area to the right is 1 minus that, because the whole curve has area 1. Symmetry gives a second route: the area right of z is the area left of −z, so you can look up the negative instead.
- Area between two values is the larger left-area minus the smaller one. Switch the shading above to Between and drag the two scores to watch it happen.
The statistical tables page carries a full printed normal table, and a drill that hands you ten of these lookups at a time.
Why standardizing is so useful
- It makes different scales comparable. Scoring z = +1.5 on a vocabulary test and z = +0.5 on a math test means you were stronger, relative to peers, in vocabulary, even if the raw points looked similar.
- It unlocks percentiles. Because every normal distribution has the same shape once standardized, a z-score maps directly to "what fraction of people scored below this," the percentile shown in the playground. When you need an exact one, the statistical tables calculator converts any z to a percentile (and back).
- It's the gateway to inference. The same standardizing move (distance from the expected value, measured in standard-error units) is exactly what test statistics and p-values are built on later.
- It measures perception, too. Much later in the course, two z-transforms turn a detection task's hit and false-alarm rates into a bias-free sensitivity index. That is the whole trick behind signal detection theory.
🎮 The 68–95–99.7 Rule
Widen the band around the mean and watch the captured percentage climb. Three landmarks (±1σ, ±2σ, ±3σ) are where the famous numbers live.
Why it matters: z-scores turn "a score" into "a position." Once you can place any value on the normal curve and read its percentile, you've got the core skill behind confidence intervals, t-tests, and nearly everything that follows.
The practice problems use z in both directions: Problem 3 compares two exam marks on different scales, and Problem 4 reads percentages and cutoffs straight off the curve.
Common questions
What does a z-score of 2 mean?
The value sits exactly 2 standard deviations above the mean. In a normal distribution that's roughly the 97.7th percentile, with only about 2.3% of values landing higher. The sign gives the direction (negative = below the mean) and the magnitude gives the rarity; beyond ±2 is conventionally "unusual."
How do I convert a z-score to a percentile?
Take the area under the standard normal curve to the left of your z. That cumulative proportion × 100 is the percentile. z = +1.0 → the 84.1st percentile; z = −1.5 → the 6.7th; and "% scoring above" is just 100 minus it. Classically you'd look this up in a printed z-table; our statistical tables calculator does the conversion in both directions (z → area, or a target percentile → the z that produces it). Remember it's only trustworthy when the data is roughly normal.
Can I use z-scores if my data isn't normal?
You can always compute a z-score — subtracting the mean and dividing by the SD works for any data, and it's still a fine way to standardize scales. What you lose is the percentile table: "z = 2 means top 2.3%" is only true for normal-shaped data. For skewed data, the same z can correspond to a very different percentile.