normal distribution
The symmetric bell-shaped distribution; about 68% of values lie within 1 SD of the mean and about 95% within 2 SD.
The normal distribution is the classic bell curve: symmetric, with a single peak in the middle and thin tails that fade out on both sides. Two numbers describe it completely: the mean sets where the peak sits, and the standard deviation sets how wide the bell is. The mean, median and mode all coincide at the centre. The curve's formula is
but in practice you almost never need it. What you need is its consequence, the 68–95–99.7 rule: about 68% of values fall within , about 95% within and about 99.7% within . (The exact 95% boundary is , the number behind most confidence intervals.) Convert any value to a z-score and one standard table works for every normal variable.
Where does it appear? In quantities shaped by many small, independent nudges, such as the fill weight of a food bag or measurement noise. For PMs the more important place is one step removed: thanks to the central limit theorem, sample means and conversion rates from reasonably large samples are close to normal even when the raw data are not. That is why z-tests, t-tests and confidence intervals lean on the bell curve.
What is usually not normal: revenue per customer, order value, session length, anything with a floor at zero and a long right tail. Don't assume the shape; check it with a histogram.
Example
CatChow's factory fills standard 2 kg bags. Fill weights are close to normal with mean g and SD g.
By the 68–95–99.7 rule:
The label promises at least 1,980 g. How many bags in a batch of 5,000 fall short? 1,980 g is exactly below the mean. About 95% of bags are within , so the remaining 5% split equally between the two tails: roughly 2.5% are too light. The exact table value for is 2.28%, so bags.
Now suppose the filling machine gets sloppier and grows to 15 g while the mean stays at 2,000 g. The same 1,980 g is now , and about 9.1% of bags fall below it: roughly 456 of 5,000. The average didn't move at all, yet underweight bags quadrupled. With normal data, the spread matters as much as the mean.
Common mistakes
- Assuming revenue or order value is normal. Money metrics are usually right-skewed; the bell curve will understate how often big orders happen.
- Thinking every test needs normal raw data. For means of large samples the central limit theorem does that job; normality of the raw data matters mainly for small samples.
- Using the 68–95–99.7 rule to flag outliers in skewed data. The rule only holds for bell-shaped data.
- Reading "normal" as "healthy" or "typical". It is the name of a shape, not a verdict on your metric.
- Trusting a formal normality test on a huge sample. With 100,000 rows it rejects normality for harmless wiggles; look at the histogram and ask whether the deviation changes your decision.
Learn it in the course
- Samples, populations and the normal distribution · Why we study samples to learn about all users, and why the bell curve shows up everywhere.
- Confidence intervals · Reporting a range of plausible values instead of a single number.