Standard Error vs Standard Deviation
By CalcMulti Editorial Team··6 min read
Standard deviation (SD) and standard error (SE) are both measures of spread, but they measure fundamentally different things. SD describes the variability of individual observations. SE describes the variability of sample means across repeated samples — the uncertainty in your estimate of the population mean.
Confusing SD and SE is one of the most common errors in published research. Using SE instead of SD artificially makes data look less variable and tighter, which can mislead readers about the true spread of the data.
Side-by-Side Comparison
| Property | Standard Deviation (SD) | Standard Error (SE) |
|---|---|---|
| What it measures | Spread of individual data points around the mean | Uncertainty of the sample mean estimate |
| Formula | s = √[Σ(xᵢ − x̄)² / (n−1)] | SE = s / √n |
| Effect of larger n | Stabilizes — converges to σ | Gets smaller — estimate improves |
| Units | Same as the data | Same as the data |
| Use in error bars | Show variability in the data | Show precision of the mean estimate |
| Use in CI | Not directly — use SE for CIs | 95% CI = x̄ ± 1.96 × SE |
| Relationship | — | SE = SD / √n |
| When n is large | Approaches σ (population SD) | Approaches 0 (perfect estimate) |
| Typical use | Describe the dataset variability | Inference about the population mean |
| Example | Heights of 50 students: SD = 6.2 cm | Mean height estimate: SE = 6.2/√50 = 0.88 cm |
The Key Insight — What Each Measures
Think of it this way: you measure the heights of 50 students. The SD (6.2 cm) tells you how spread out those 50 heights are — most students are within ±6.2 cm of the mean. This is a property of the population of students.
The SE (0.88 cm) tells you how precisely your sample of 50 estimates the true population mean. If you repeated the study 100 times, the 100 sample means would have a standard deviation of about 0.88 cm. This is a property of your estimation process.
Crucial distinction: if you added more students to your study, the SD would not shrink much (the population is still as variable). But the SE would shrink as 1/√n — larger samples give more precise mean estimates. SE approaches 0 as n → ∞, while SD stabilizes at σ.
Formulas and Calculation
SD: s = √[Σ(xᵢ − x̄)² / (n−1)]
SE of the mean: SE = s / √n
Worked example: Data = {5, 7, 9, 11, 13}, n=5, x̄=9. Deviations²: 16, 4, 0, 4, 16. SS=40. s² = 40/4 = 10. s = √10 ≈ 3.16. SE = 3.16/√5 ≈ 1.41.
In this example: SD=3.16 tells you individual values typically fall within ±3.16 of the mean. SE=1.41 tells you the sample mean of 9 is uncertain by about ±1.41 — the true mean could plausibly be anywhere from ~6 to ~12.
When to Report SD vs SE
Report SD when: describing the variability of your sample or the natural spread in a population. Examples: "Height in this sample: mean = 175 cm, SD = 6.2 cm." Clinical reference ranges. Checking normality assumptions.
Report SE (or confidence intervals) when: making inferences about population parameters. Constructing confidence intervals: 95% CI = x̄ ± 1.96 × SE. Reporting precision of mean estimates in research papers. Showing error bars that represent uncertainty in a group mean.
Common error in published papers: using SE for error bars in descriptive plots to make the data look less variable. SE error bars are only appropriate when the plot shows a mean estimate and you want to convey precision. If you are showing the distribution of individual data points, SD is correct.
Confidence Intervals Use SE, Not SD
95% confidence interval for the mean: x̄ ± t* × SE, where t* is the critical t-value for df = n−1.
The CI captures the uncertainty in the mean estimate — which is precisely what SE measures. Using SD to construct a CI would be wrong: you would be constructing a range for individual observations, not for the mean.
Exception: a "reference interval" or "normal range" in clinical medicine (e.g., "95% of healthy patients have values between X and Y") uses 1.96 × SD because it describes individual data spread, not mean uncertainty.
Summary
SD describes your data; SE describes how well your mean estimates the population. Use SD to characterize variability in your sample. Use SE (or CIs) for inference and error bars on mean estimates.
- SD stays roughly constant as you add more data; SE shrinks as 1/√n
- SE = SD / √n — they are mathematically linked by sample size
- 95% CI for a mean = x̄ ± 1.96 × SE (not SD)
- When in doubt about error bars in a plot, prefer 95% CIs — they are more informative than either SD or SE alone
- Reporting SE in descriptive contexts (where SD belongs) is a common error that makes results look more precise than they are
Related Calculators
Calculate SE from your data
Confidence Interval CalculatorBuild CIs using SE
Standard Deviation ExplainedSD formula and interpretation
Confidence Intervals ExplainedWhat confidence intervals mean
Descriptive Statistics MeasuresCompare all spread measures
Statistics HubAll statistics calculators and guides
Frequently Asked Questions
Educational use only. Content is based on publicly documented mathematical formulas and reviewed for accuracy by the CalcMulti Editorial Team. Last updated: March 2026.