Section 1.5

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.

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

Example: IQ scores, which are built to have a mean of 100 and a standard deviation of 15. Drag the score and read off its z-score and percentile.

Z-score+1.00
% at or below (percentile)84.1%
% at or above15.9%

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%).

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 — 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.

Within the band68.3%
In each tail15.87%
Landmarkthe 68% rule

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 — only about 2.3% of values land 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.