What does standard deviation actually mean?

By Jude Wallis · Published

Standard deviation is roughly the typical distance between a data value and the mean, in the same units as the data. A standard deviation of 3.69 minutes means individual wait times sit about 3.69 minutes away from the mean of 17 minutes, some closer and some farther.

AP Statistics: Unit 1 (topics 1.7 Summary Statistics for One Quantitative Variable, 1.9 Comparisons of the Distributions for One Quantitative Variable). The Fall 2026 CED defines standard deviation in Unit 1 topic 1.7 as a typical deviation of the data values from their mean and lists it as a nonresistant measure of variability; standardized scores, which count standard deviations above or below the mean, appear in topic 1.9.

A typical distance from the mean

The AP course describes standard deviation as a typical deviation of the data values from their mean. That is the sentence to hold onto. If a data set has a mean of 17 minutes and a standard deviation of 3.69 minutes, then a value about 3.69 minutes away from 17 is unremarkable, while one sitting 15 minutes away is not.

The word "typical" is doing real work there, and it is meant literally rather than exactly. Standard deviation is not the plain average of the distances. It is built from squared distances, so values far from the mean count for more, and it usually comes out a little larger than the average distance.

The symbols: ss is the sample standard deviation, xˉ\bar{x} ("x-bar") is the sample mean, σ\sigma ("sigma") is the population standard deviation, and μ\mu ("mu") is the population mean. This page uses ss, since nearly all data you meet is a sample.

Where the number comes from

Each part of the formula answers a problem created by the part before it.

s=(xixˉ)2n1s = \sqrt{\frac{\sum (x_i - \bar{x})^2}{n-1}}
  1. Deviations. Subtract the mean from each value, xixˉx_i - \bar{x}. That is the distance-from-center idea in its rawest form, with a sign attached.
  2. Squares. The raw deviations always add to exactly zero, so their average tells you nothing. Squaring makes every one of them positive, and it also weights the far-out values more heavily.
  3. Average. Add the squares and divide by n1n - 1. This average squared distance is the variance, s2s^2. The divisor is n1n - 1 rather than nn because the deviations were measured from the sample's own mean, which dividing by n - 1 explains in full.
  4. Square root. Undo the squaring from step 2.

Skip any step and the result stops meaning anything. Skip the squares and you get zero every time; skip the root and you are left in the wrong units. The five-step calculation by hand runs the whole thing on real numbers.

Why the square root matters

Variance is measured in squared units. If your data is in minutes, the variance is in minutes squared, which is not a quantity anyone can picture. The square root returns the answer to minutes. That is the whole reason standard deviation is reported more often than variance, even though the two carry identical information.

Because ss is in the original units, you can set it beside the data and it means something. You can say a value is one standard deviation above the mean, which is exactly what a z-score counts. The AP course defines a standardized score as the number of standard deviations a value falls above or below the mean, and that definition works only because ss, xx, and xˉ\bar{x} share units.

Units follow the data through conversions, too. Convert your minutes to seconds and ss is multiplied by 60 along with everything else, since changing the units of measurement changes the values of the calculated statistics.

What small and large look like on a dotplot

Here are two sets of five delivery times, in minutes, both with a mean of 20 minutes.

  • Set A: 18, 19, 20, 21, 22 minutes. The dots sit in a tight clump. The squared deviations 4, 1, 0, 1, 4 total 10, so s=10/4=2.51.58s = \sqrt{10/4} = \sqrt{2.5} \approx 1.58 minutes.
  • Set B: 10, 15, 20, 25, 30 minutes. The same five dots stretch across a range five times as wide. The squared deviations 100, 25, 0, 25, 100 total 250, so s=250/4=62.57.91s = \sqrt{250/4} = \sqrt{62.5} \approx 7.91 minutes.

Set B is Set A pulled away from the mean by a factor of 5, and its standard deviation is exactly 5 times as large: 1.5811×5=7.90571.5811 \times 5 = 7.9057. On a dotplot, a small standard deviation looks like a narrow pile and a large one looks like dots scattered thinly across a wide axis.

Two data sets can share a mean and look nothing alike, which is why a center is never a description on its own. A description names shape, center, and variability plus any unusual features, and how to describe a distribution walks through the full checklist.

Interpretation sentences that earn credit

An interpretation names the variable, the individuals, and the units. Restating the number is not interpreting it.

The template for one distribution: the [variable] of the [individuals] typically vary about [s] [units] from the mean of [mean] [units].

Filled in: "The wait times of these six patients typically vary about 3.69 minutes from the mean wait time of 17 minutes."

For a comparison, name both numbers and say which is larger: "The Set B delivery times are more variable than the Set A times, because Set B's standard deviation of 7.91 minutes is larger than Set A's 1.58 minutes."

Three phrasings that do not earn the point:

  • "The standard deviation is 3.69." That repeats the calculation with no context and no units.
  • "The data is 3.69 away from the mean." No variable, no individuals, and it claims every value is exactly 3.69 away.
  • "3.69 is a small standard deviation." Small next to what? Spread is only small or large relative to the mean or to another group.

Never negative, and zero only when every value is identical

A standard deviation cannot come out negative. Every squared deviation is zero or positive, so their sum is zero or positive, n1n - 1 is positive, and the square root of a number that is not negative is not negative either. A negative ss is an arithmetic error, with no exceptions.

It reaches zero in exactly one situation: every value in the set is the same number. Take 7, 7, 7, 7. The mean is 7, all four deviations are 0, the sum of squares is 0, and s=0s = 0. There is nothing for a value to be typically distant from.

Turn that around. If any two values differ, at least one squared deviation is positive, so s>0s > 0. A standard deviation of zero is a claim that the data has no variability at all, which for real measurements usually means a column got copied wrong.

One outlier can move it a lot

Standard deviation is not resistant. The AP course lists the range and standard deviation as nonresistant measures of variability, and the median and IQR as resistant ones, because outliers barely touch that second pair.

The squaring is the reason. A value 40 units from the mean contributes 402=160040^2 = 1600 to the sum of squares, while a value 4 units away contributes 16. One far-out point can dominate the entire sum, as the second worked example below shows: changing a single value leaves the median exactly where it was and multiplies ss by more than five.

There is a second consequence worth knowing. One of the two outlier rules in the AP course flags any value more than 2 standard deviations from the mean, and that rule uses the very ss the outlier has already inflated, which can hide the point it was meant to catch. The 1.5 IQR rule does not have that weakness, because quartiles ignore how extreme the extremes are.

When a distribution is strongly skewed or holds outliers, report the median and IQR instead. The comparison of standard deviation and IQR covers which one is the honest summary in each case.

Computing s and saying what it means

Six patients at a walk-in clinic wait 12, 15, 15, 18, 20, and 22 minutes to be seen. Find the sample standard deviation, write an interpretation in context, and compare the result with the plain average distance from the mean.

  1. Find the mean: xˉ=12+15+15+18+20+226=1026=17\bar{x} = \frac{12 + 15 + 15 + 18 + 20 + 22}{6} = \frac{102}{6} = 17 minutes.

  2. Find the deviations xixˉx_i - \bar{x}: 5-5, 2-2, 2-2, 11, 33, and 55. They sum to 522+1+3+5=0-5 - 2 - 2 + 1 + 3 + 5 = 0, the standard check that the mean is right.

  3. Square them: 2525, 44, 44, 11, 99, and 2525.

  4. Add the squares: 25+4+4+1+9+25=6825 + 4 + 4 + 1 + 9 + 25 = 68 squared minutes.

  5. Divide by n1=5n - 1 = 5: the sample variance is s2=68/5=13.6s^2 = 68/5 = 13.6 squared minutes.

  6. Take the square root: s=13.63.6878s = \sqrt{13.6} \approx 3.6878 minutes, or about 3.69 minutes.

  7. Compare with the plain average distance, ignoring signs: (5+2+2+1+3+5)/6=18/6=3.0(5 + 2 + 2 + 1 + 3 + 5)/6 = 18/6 = 3.0 minutes. The standard deviation is larger because squaring gives the two 5-minute deviations extra weight.

s3.69s \approx 3.69 minutes. Interpretation: the wait times of these six patients typically vary about 3.69 minutes from the mean wait time of 17 minutes. The average distance from the mean is 3.0 minutes, a little smaller, which is why typical distance is a good description of ss rather than an exact definition.

What one outlier does to s

Eight bike-share trips last 10, 12, 13, 14, 15, 16, 17, and 19 minutes. Find the mean, median, and sample standard deviation. Then suppose the 19-minute trip was recorded wrong and was really 59 minutes, and recompute all three.

  1. Original mean: the eight values sum to 10+12+13+14+15+16+17+19=11610 + 12 + 13 + 14 + 15 + 16 + 17 + 19 = 116, so xˉ=116/8=14.5\bar{x} = 116/8 = 14.5 minutes.

  2. Original deviations: 4.5-4.5, 2.5-2.5, 1.5-1.5, 0.5-0.5, 0.50.5, 1.51.5, 2.52.5, 4.54.5. Their squares are 20.2520.25, 6.256.25, 2.252.25, 0.250.25, 0.250.25, 2.252.25, 6.256.25, 20.2520.25, which add to 5858.

  3. Original standard deviation: s2=58/78.2857s^2 = 58/7 \approx 8.2857, so s2.88s \approx 2.88 minutes.

  4. Original median: with 8 values it is the average of the 4th and 5th, (14+15)/2=14.5(14 + 15)/2 = 14.5 minutes.

  5. Now change 19 to 59. The new sum is 11619+59=156116 - 19 + 59 = 156, so the new mean is 156/8=19.5156/8 = 19.5 minutes, five minutes higher.

  6. New deviations: 9.5-9.5, 7.5-7.5, 6.5-6.5, 5.5-5.5, 4.5-4.5, 3.5-3.5, 2.5-2.5, and 39.539.5. Their squares are 90.2590.25, 56.2556.25, 42.2542.25, 30.2530.25, 20.2520.25, 12.2512.25, 6.256.25, and 1560.251560.25. The first seven add to 257.75257.75, so the total is 257.75+1560.25=1818257.75 + 1560.25 = 1818.

  7. New standard deviation: s2=1818/7259.7143s^2 = 1818/7 \approx 259.7143, so s16.12s \approx 16.12 minutes.

  8. New median: the 4th and 5th values are still 14 and 15, so the median is still 14.5 minutes. Using the median-excluded (TI-84) rule this site follows, the quartiles do not move either: the first quartile Q1=(12+13)/2=12.5Q_1 = (12 + 13)/2 = 12.5 and the third quartile Q3=(16+17)/2=16.5Q_3 = (16 + 17)/2 = 16.5 both before and after, so the IQR stays 4 minutes.

The single changed value leaves the median at 14.5 minutes and the IQR at 4 minutes, moves the mean from 14.5 to 19.5 minutes, and moves the standard deviation from about 2.88 to about 16.12 minutes, more than five times larger. That is what nonresistant means in practice.

Frequently asked questions

Is standard deviation the same as the average distance from the mean?

Not quite. The average distance (the mean absolute deviation) adds up the distances without signs and divides by nn. Standard deviation squares the distances first, averages, then takes a root, so far-out values count for more. It is always at least as large: in the clinic example the average distance is 3.0 minutes while s3.69s \approx 3.69 minutes.

What does a standard deviation of 0 mean?

That every value in the data set is identical. Each deviation is 0, so the sum of squares is 0 and the root of 0 is 0. Any variation at all, even one value differing by a small amount, makes ss strictly greater than 0.

Can the standard deviation be bigger than the mean?

Yes, and it happens often with right-skewed data such as incomes or wait times. Take 1, 1, 1, and 25: the mean is 28/4=728/4 = 7, the squared deviations are 3636, 3636, 3636, and 324324, which total 432432, so s2=432/3=144s^2 = 432/3 = 144 and s=12s = 12. A standard deviation of 12 against a mean of 7 is a signal that the distribution is strongly skewed.

Does a large standard deviation mean the data is bad?

No, it means the values are spread out, and whether that is good depends entirely on context. A large standard deviation in the fill weights of a cereal machine is a problem, since you want consistency. A large standard deviation in the ages of a town's residents is just a description of the town.