Standard Deviation Explained: What It Means for Your Data
Published Apr 14, 2026 · 6 min read
Standard deviation measures how spread out numbers are from the average. A low standard deviation means data points cluster near the mean; a high one means they're scattered widely. It's the single most used measure of variability.
Step-by-Step Calculation
For the data set: 4, 8, 6, 5, 3:
| Step | Action | Result |
|---|---|---|
| 1 | Find the mean | (4+8+6+5+3) ÷ 5 = 5.2 |
| 2 | Subtract mean from each value | -1.2, 2.8, 0.8, -0.2, -2.2 |
| 3 | Square each difference | 1.44, 7.84, 0.64, 0.04, 4.84 |
| 4 | Average the squares (variance) | 14.8 ÷ 5 = 2.96 |
| 5 | Take the square root | √2.96 = 1.72 |
Note: Use N for population std dev, N-1 for sample std dev. Most real-world cases use N-1 (sample).
What the Number Means
In a normal distribution (bell curve):
- 68% of data falls within ±1 standard deviation of the mean
- 95% falls within ±2 standard deviations
- 99.7% falls within ±3 standard deviations
Test scores with mean 75, std dev 10: 68% of students scored between 65-85, 95% between 55-95.
Real-World Examples
- Manufacturing: A machine fills bottles to 500ml ± 2ml (std dev 1ml) — Six Sigma aims for defect rates below 3.4 per million
- Finance: Stock A has 15% annual return with 20% std dev (volatile). Stock B has 12% return with 8% std dev (stable). Higher std dev = higher risk.
- Weather: San Francisco (std dev 5°F) has consistent temps. Chicago (std dev 20°F) varies wildly.
When to Use What
- Standard deviation: Same units as your data — easiest to interpret
- Variance: Squared units — useful for mathematical calculations
- Coefficient of variation: (Std dev ÷ Mean) × 100 — compare spread across different scales
Try it: Use our Standard Deviation Calculator to compute variance and std dev for any data set instantly.