Skip to content
Statistics InferenceStatistics Inference

What Is Standard Deviation? A Plain-English Guide

What standard deviation means, the formula, a step-by-step example, and the 68–95–99.7 rule — explained without the jargon.

7 min read · Reviewed August 2026

What standard deviation actually means

Standard deviation is a single number that tells you how spread out a set of values is. A small standard deviation means the values huddle close to the average; a large one means they are scattered far and wide. It answers the question: “how far, on average, does a typical value fall from the mean?”

Two classes can both average 70% on a test. In one, everyone scored between 66 and 74; in the other, scores ran from 40 to 100. The means are identical, but the second class is far more spread out — and standard deviation is the number that captures that difference.

The standard deviation formula

Standard deviation is the square root of the variance — the average of the squared distances from the mean. The population version divides by N; the sample version divides by n − 1:

σ=(xiμ)2Ns=(xixˉ)2n1\sigma=\sqrt{\dfrac{\sum (x_i-\mu)^2}{N}} \qquad s=\sqrt{\dfrac{\sum (x_i-\bar{x})^2}{n-1}}

Use the sample formula (s, dividing by n − 1) when your data is a sample drawn from a larger group — which is almost always the case in practice. The n − 1 is Bessel’s correction, and it keeps the estimate from being biased too small.

A step-by-step example

Find the sample standard deviation of 4, 8, 6, 5, 3:

  1. Mean: (4 + 8 + 6 + 5 + 3) ÷ 5 = 5.2.
  2. Deviations from the mean: −1.2, 2.8, 0.8, −0.2, −2.2.
  3. Square them: 1.44, 7.84, 0.64, 0.04, 4.84 — which sum to 14.8.
  4. Divide by n − 1 = 4 to get the variance: 14.8 ÷ 4 = 3.7.
  5. Take the square root: √3.7 ≈ 1.92.

So the values sit about 1.92 units from the mean on average. Our standard deviation calculator does these steps for you and shows the full working.

The 68–95–99.7 rule

For data that follows a roughly normal (bell-shaped) distribution, standard deviation has a neat interpretation known as the empirical rule:

Within…Contains about…
1 standard deviation of the mean68% of values
2 standard deviations95% of values
3 standard deviations99.7% of values

This is why standard deviation underpins so much of statistics: once you know the mean and standard deviation of a normal distribution, you can estimate how unusual any particular value is.

Standard deviation vs. variance

Variance and standard deviation measure the same thing — spread — but variance is in squared units (squared dollars, squared centimetres), which is hard to interpret. Standard deviation is the square root of the variance, which brings it back to the original units. That is why standard deviation is the number people actually report.

To compare the spread of two data sets measured on different scales, divide the standard deviation by the mean to get the coefficient of variation — a unitless percentage.

Common mistakes to avoid

  • Using the population formula (÷ N) when you only have a sample — use the sample formula (÷ n − 1) unless you truly have every value.
  • Comparing standard deviations across different units or scales directly — use the coefficient of variation instead.
  • Forgetting that standard deviation is sensitive to outliers, because the deviations are squared before averaging.

Frequently asked questions

What is standard deviation in simple terms?

It is the typical distance between a value and the average of all the values. A small standard deviation means the data is tightly clustered around the mean; a large one means it is widely spread out.

Is a high or low standard deviation better?

Neither is universally “better” — it depends on context. Low standard deviation means consistency (good for a manufacturing process); high standard deviation means variability (which may be expected for things like investment returns).

What is the difference between standard deviation and standard error?

Standard deviation describes the spread of individual values in your data. Standard error describes the spread of a sample statistic (like the mean) across many samples, and equals the standard deviation divided by the square root of the sample size.