Standard Deviation & Z-Scores

Measuring how much values vary, and putting observations onto a common scale.

01. What Does Standard Deviation Measure?

The mean tells us where the centre of a dataset is. But the mean alone doesn't tell us whether the observations are tightly clustered or widely spread.

Standard deviation measures the typical distance of observations from the mean.

A small standard deviation means the observations tend to stay close to the mean. A large standard deviation means they are more spread out.

σ = √   Σ(x − μ)2 / N
In simple terms:

Find how far each observation is from the mean, square those distances, take their average, and then take the square root.

Standard deviation = 7.0

02. Distance From the Mean

Standard deviation becomes much easier to understand when we think of it as a distance from the mean.

If the mean is μ and the standard deviation is σ, then the familiar landmarks are:

Centre
μ
One below
μ − σ
One above
μ + σ
Two below
μ − 2σ
Two above
μ + 2σ

For a Normal distribution, these distances have a particularly useful interpretation because they correspond to predictable proportions of the population.

Mean ± Standard Deviation

03. What Is a Z-Score?

A z-score tells us how many standard deviations an observation is above or below the mean.

z = (x − μ) / σ

This simple calculation transforms an ordinary observation into a standardised value.

Current z-score
0.00
Exactly at the mean
50.0th percentile

04. Why Standardise Values?

Raw values can be misleading when they come from different distributions.

Consider two students who take different tests.

Alice

Score: 80

Mean: 70

Standard deviation: 5

z = (80 − 70) / 5

z = +2.00

Bob

Score: 85

Mean: 75

Standard deviation: 10

z = (85 − 75) / 10

z = +1.00
Who performed better relative to their group?

Bob has the higher raw score, but Alice is two standard deviations above her mean while Bob is only one standard deviation above his.

Z-scores allow us to compare observations measured on completely different scales.

05. The 68–95–99.7 Rule

For a Normal distribution, standard deviation gives us a remarkably useful rule of thumb.

Within ±1σ
68.3%
About two-thirds of observations
Within ±2σ
95.4%
Almost all observations
Within ±3σ
99.7%
Almost the entire distribution
This is where z-scores become especially powerful.

The numbers −3, −2, −1, 0, +1, +2 and +3 describe positions on the distribution regardless of the original units.

06. Explore a Real Dataset

Let's return to the example from the Normal Distribution page: people's heights.

Suppose the population has an average height of 175 cm and a standard deviation of 7 cm.

Choose a height below and see where that person sits relative to the population.

187 cm
Mean
175 cm
Standard deviation
7 cm
Distance from mean
+12 cm
Z-score
+1.71
Approximately the 95.6th percentile

07. Why Z-Scores Matter in Finance

Z-scores become particularly interesting when we start looking at financial returns.

Imagine that a financial asset has:

Average daily return
0.05%
Daily standard deviation
0.45%
Observed return
−1.30%
z = (−1.30% − 0.05%) / 0.45% ≈ −3.00

A return of −1.30% would therefore be approximately three standard deviations below the mean.

Under a Normal model, observations this far from the mean should be extremely unusual.

And this is where things get interesting.

Financial markets regularly produce observations that appear more extreme than a simple Normal model would suggest.

That observation leads us towards one of the most important ideas in financial modelling: fat tails.

08. The Limitation of the Normal Model

Standard deviation and z-scores work beautifully when the underlying distribution behaves approximately like a Normal distribution.

But real-world data is not always Normal.

In particular, financial returns often exhibit:

Heavy tails
More extremes
Skewness
Asymmetry
Volatility clustering
Changing risk
Not every −3σ event is equally unlikely.

This is one reason why financial models often need distributions that are more flexible than the Normal distribution.

09. From Individual Values to Samples

So far, we have considered individual observations.

But what happens when we repeatedly take samples from a population and calculate the mean of each sample?

Something remarkable happens.

The distribution of sample means becomes increasingly Normal.

This happens even when the original population is not itself perfectly Normal, provided the samples are sufficiently large and the usual conditions are met.

This is the Central Limit Theorem.

It is one of the foundational ideas behind statistics, estimation, confidence intervals and many forms of statistical inference.

It also gives us another important distinction: the distribution of individual observations is not necessarily the same as the distribution of their averages.

Next: The Central Limit Theorem →

← Back to Normal Distribution