Descriptive Statistics Inferential Statistics Research Methods 24 min read July 22, 2026
BY: Statistics Fundamentals Team
Reviewed By: Minsa A (Senior Statistics Editor)

Standard Deviation vs Standard Error: What's the Difference?

A clinical trial reports that a new drug lowered blood pressure by 8 mmHg ± 3. A textbook example reports the same mean with ± 12. Both numbers are correct — they just answer different questions. The ± 3 is a standard error: it tells you how precisely the mean was measured. The ± 12 is a standard deviation: it tells you how variable individual patients were. Confusing the two is one of the most common errors in published research.

This guide gives you exact definitions, the formulas and their mathematical relationship, five original datasets worked through step-by-step, a practical decision guide for graphs and research papers, software code in Excel, R, and Python, and an interactive calculator.

What You'll Learn
  • ✓ Exact definitions of standard deviation and standard error
  • ✓ The mathematical relationship: SE = SD / √n
  • ✓ Five worked examples: students, patients, manufacturing, finance, A/B testing
  • ✓ When to use SD vs SE in research papers, graphs, and error bars
  • ✓ A complete comparison table (SD vs SE vs Variance vs CI)
  • ✓ Software code: Excel, R, Python
  • ✓ The SPREAD framework for choosing the right statistic
  • ✓ An interactive SD and SE calculator with step-by-step output

Standard Deviation vs Standard Error: The One-Paragraph Answer

📌
Featured Snippet — Direct Answer

Standard deviation (SD) measures how spread out the individual values in your dataset are around the mean. Standard error (SE) — more precisely, the standard error of the mean (SEM) — measures how precisely your sample mean estimates the true population mean. The two are connected by a single formula: SE = SD / √n. SD describes the data itself; SE describes the estimate of the mean. Use SD to characterize a population or sample; use SE (or a confidence interval built from it) when making inferences.

SD
Measures data variability
SE
Measures estimate precision
÷√n
How SD becomes SE
SE shrinks as n grows

Definitions: What Each Statistic Actually Measures

What Is Standard Deviation?

Definition — Standard Deviation (SD or σ / s)
Standard deviation is the average distance of individual data values from the mean of the dataset. A large SD means the values are widely scattered; a small SD means they cluster tightly around the mean. It is calculated in the same units as the original data.
s = √[ Σ(xᵢ − x̄)² / (n − 1) ]

There are two versions. The population standard deviation (σ) uses N in the denominator and describes a complete population. The sample standard deviation (s) uses n − 1 (Bessel's correction) to give an unbiased estimate of σ from a subset of data. In practice, researchers almost always work with samples, so s is the standard form.

Standard deviation was formalized in the late 19th century. Karl Pearson standardized the term "standard deviation" in 1894. It answers the question: How spread out are these measurements? A dataset of exam scores with SD = 15 points means most scores fall within about 15 points of the mean. The empirical rule states that for a normal distribution, roughly 68% of values fall within ±1 SD, 95% within ±2 SD, and 99.7% within ±3 SD.

Sample Standard Deviation Formula
s = √[ Σ(xᵢ − x̄)² / (n − 1) ]
s = sample standard deviation xᵢ = each individual value = sample mean n = number of observations n−1 = Bessel's correction

What Is Standard Error?

Definition — Standard Error of the Mean (SE or SEM)
Standard error of the mean is the standard deviation of the sampling distribution of the sample mean. It quantifies how much the sample mean would vary across repeated samples of the same size drawn from the same population. A small SE means the sample mean is a precise estimate of the population mean.
SE = s / √n

Standard error rests on the Central Limit Theorem: as sample size grows, the distribution of sample means becomes approximately normal with mean μ and standard deviation σ/√n, regardless of the original population's shape. This theoretical standard deviation of the sampling distribution is the standard error.

SE answers the question: How close is my sample mean likely to be to the true population mean? It is the building block of confidence intervals. A 95% confidence interval for the mean runs from x̄ − 1.96·SE to x̄ + 1.96·SE when the normal approximation applies.

Standard Error of the Mean Formula
SE = s / √n
SE = standard error of the mean s = sample standard deviation n = sample size √n = square root of sample size

The Mathematical Relationship Between SD and SE

The relationship SE = s / √n is the core of this topic. It has three immediate consequences worth memorizing.

1

SE is always smaller than SD (when n > 1)

Because you divide by √n and n is at least 2 in any real study, SE is always a fraction of SD. With n = 4: SE = SD/2. With n = 9: SE = SD/3. With n = 100: SE = SD/10. The bigger the sample, the more the two diverge.

2

SD stabilizes; SE shrinks continuously

As you collect more data, SD converges on the population standard deviation σ — it stops changing much once n is a few dozen. SE, on the other hand, keeps decreasing as 1/√n. Collecting 4× more data halves the SE. This is why large clinical trials can detect very small treatment effects.

3

You can recover SD from SE (and vice versa)

Given SE and n: SD = SE × √n. Given SD and n: SE = SD / √n. If a paper reports only SE = 2.4 and n = 36, you can recover SD = 2.4 × √36 = 2.4 × 6 = 14.4. This conversion matters when you need to assess the spread of individual values but the paper only reports standard errors.

⚠️
A Common Reporting Error to Avoid

Some researchers report SE in their tables because it looks smaller and "more impressive" than SD. This practice makes the data appear less variable than it is. The American Statistical Association and the CONSORT guidelines recommend always stating explicitly which measure you are reporting, and preferring SD when describing the sample characteristics of study participants.

Standard Deviation vs Standard Error: Full Comparison Table

Feature Standard Deviation (SD) Standard Error (SE)
What it measures Variability of individual values Precision of the sample mean
What it describes The dataset / distribution The estimate (the mean)
Type of statistic Descriptive Inferential
Formula s = √[Σ(xᵢ − x̄)² / (n−1)] SE = s / √n
Effect of larger n Converges toward population σ Decreases toward zero
Units Same as original data Same as original data
Always smaller than the other? No (SD ≥ SE when n ≥ 1) Yes (SE ≤ SD when n ≥ 1)
Used to build Reference ranges, z-scores Confidence intervals, t-tests
Use in research tables Describing participant characteristics Reporting precision of estimated means
Use in graphs / error bars To show data spread To show precision of the mean
Key question answered "How variable are individuals?" "How precisely do I know the mean?"

Extended Comparison: SD, SE, Variance, and Confidence Interval

Statistic Symbol Formula What it tells you When to use it
Variance Σ(xᵢ − x̄)² / (n−1) Average squared deviation from mean Intermediate calculation; ANOVA
Standard Deviation s (or SD) √[Σ(xᵢ − x̄)² / (n−1)] Typical distance from mean Describing spread of individual values
Standard Error SE (or SEM) s / √n Precision of the sample mean Confidence intervals; hypothesis tests
95% Confidence Interval 95% CI x̄ ± 1.96 × SE Plausible range for true population mean Reporting in publications; error bars
Margin of Error ME z* × SE (or t* × SE) Half-width of a confidence interval Survey research; poll reporting
Formula conventions follow: NIST Engineering Statistics Handbook and Moore, D.S., McCabe, G.P., & Craig, B.A. (2017). Introduction to the Practice of Statistics, 9th ed. W.H. Freeman.

5 Worked Examples with Real Datasets

Each dataset below was constructed for this guide. Both SD and SE are calculated from scratch so you can verify every step.

Example 1 — Student Exam Scores

Worked Example 1 — Education

Dataset: Scores of 8 students on a statistics midterm (out of 100): 72, 85, 68, 91, 77, 83, 64, 80.

Student Score (xᵢ) (xᵢ − x̄) (xᵢ − x̄)²
172−5.530.25
285+7.556.25
368−9.590.25
491+13.5182.25
577−0.50.25
683+5.530.25
764−13.5182.25
880+2.56.25
Sum / Mean: 620 / 77.50578.00
1

Mean: x̄ = (72 + 85 + 68 + 91 + 77 + 83 + 64 + 80) / 8 = 620 / 8 = 77.5

2

Sum of squared deviations: Σ(xᵢ − x̄)² = 578.00

3

Sample Variance: s² = 578 / (8 − 1) = 578 / 7 = 82.57

4

Standard Deviation: s = √82.57 = 9.09 points

5

Standard Error: SE = 9.09 / √8 = 9.09 / 2.828 = 3.21 points

SD = 9.09 points — a typical student scored roughly 9 points above or below the class mean. SE = 3.21 points — the class mean of 77.5 is estimated with a precision of about ±3.2 points (the 95% CI would be 77.5 ± 6.3 points). If someone wants to know how spread out the class was, report SD. If they want to know how confident you are in the mean score, report SE.

Example 2 — Patient Blood Pressure

Worked Example 2 — Healthcare

Dataset: Systolic blood pressure (mmHg) of 10 patients before treatment: 142, 138, 155, 129, 147, 161, 133, 145, 152, 138.

1

Mean: Σxᵢ = 1440. x̄ = 1440 / 10 = 144.0 mmHg

2

Deviations squared: (142−144)²=4, (138−144)²=36, (155−144)²=121, (129−144)²=225, (147−144)²=9, (161−144)²=289, (133−144)²=121, (145−144)²=1, (152−144)²=64, (138−144)²=36. Sum = 906

3

SD: s = √(906 / 9) = √100.67 = 10.03 mmHg

4

SE: SE = 10.03 / √10 = 10.03 / 3.162 = 3.17 mmHg

5

95% CI for mean: 144.0 ± (t₀.₀₂₅, df=9) × 3.17 ≈ 144.0 ± 2.262 × 3.17 ≈ 144.0 ± 7.17 → [136.8, 151.2] mmHg

SD = 10.03 mmHg tells a clinician that individual patients vary considerably. SE = 3.17 mmHg is what feeds the 95% CI. The CONSORT reporting guidelines for clinical trials recommend reporting the mean ± SD for baseline characteristics and using 95% CIs (derived from SE) for treatment effect estimates.

Example 3 — Manufacturing Quality Control

Worked Example 3 — Manufacturing

Dataset: Diameter (mm) of 6 machined parts from one production run: 25.02, 24.98, 25.05, 24.97, 25.01, 24.99.

1

Mean: x̄ = (25.02 + 24.98 + 25.05 + 24.97 + 25.01 + 24.99) / 6 = 150.02 / 6 = 25.003 mm

2

Σ(xᵢ − x̄)²: (0.017)²+(−0.023)²+(0.047)²+(−0.033)²+(0.007)²+(−0.013)² = 0.000289+0.000529+0.002209+0.001089+0.000049+0.000169 = 0.004334

3

SD: s = √(0.004334 / 5) = √0.0008668 = 0.02944 mm

4

SE: SE = 0.02944 / √6 = 0.02944 / 2.449 = 0.01202 mm

✅ In quality control, SD = 0.029 mm matters most — it tells whether individual parts will fall within the engineering tolerance band. If the tolerance is ±0.05 mm, the process is capable (SD is well within spec). SE is used when checking whether the process mean has drifted — for example, a quality engineer would run a one-sample t-test using SE to test whether the mean (25.003 mm) still equals the target (25.000 mm).

Example 4 — Daily Stock Returns

Worked Example 4 — Finance

Dataset: Daily returns (%) of a stock over 5 trading days: +1.2, −0.8, +2.1, −1.5, +0.6.

1

Mean: x̄ = (1.2 − 0.8 + 2.1 − 1.5 + 0.6) / 5 = 1.6 / 5 = 0.32%

2

Σ(xᵢ − x̄)²: (0.88)²+(−1.12)²+(1.78)²+(−1.82)²+(0.28)² = 0.7744+1.2544+3.1684+3.3124+0.0784 = 8.588

3

SD: s = √(8.588 / 4) = √2.147 = 1.465%

4

SE: SE = 1.465 / √5 = 1.465 / 2.236 = 0.655%

✅ In finance, SD = 1.465% is volatility — the risk measure used in portfolio analysis and option pricing (annualized by multiplying by √252 for daily data). SE = 0.655% would be used to test whether the mean daily return of 0.32% is statistically different from zero — a hypothesis test with df = 4 and t = 0.32/0.655 = 0.49 would give p ≈ 0.65, so this is not a statistically significant positive return over just 5 days.

Example 5 — Website Conversion Rates (A/B Test)

Worked Example 5 — Digital Marketing

Dataset: Daily conversion rates (%) for a landing page over 7 days: 3.1, 2.9, 3.4, 2.7, 3.2, 3.0, 3.3.

1

Mean: x̄ = 21.6 / 7 = 3.086%

2

Σ(xᵢ − x̄)²: 0.0004+0.0346+0.0996+0.1476+0.0130+0.0074+0.0464 = 0.2040 (approx — small rounding)

3

SD: s = √(0.204 / 6) = √0.034 = 0.184%

4

SE: SE = 0.184 / √7 = 0.184 / 2.646 = 0.070%

✅ A data scientist running an A/B test would report the mean conversion rate as 3.09% ± 0.14% (95% CI based on SE), not 3.09% ± 0.18% (SD). The SE-based interval is the right tool for comparing this variant against a control — it directly addresses the inference question: "Is this mean different from the control mean?"

When to Use Standard Deviation vs Standard Error

The choice depends entirely on what question you are answering. The table below gives the rule for common situations.

Situation Use SD Use SE (or 95% CI)
Describing variability of individuals
Reporting patient / subject characteristics
Reference ranges (e.g., "normal" lab values)
Quality control / process spread
Risk / volatility in finance
Estimating how precise the mean is
Confidence intervals for the mean
Hypothesis tests (t-test, z-test)
Error bars showing inferential precision ✓ (95% CI preferred)
Comparing two group means
Sample size planning for future study ✓ (need SD estimate)
Reporting treatment effects in clinical trials ✓ (95% CI required by CONSORT)

Decision Tree: SD or SE?

Which measure should I report?

Are you describing how variable individual observations are?
✓ Use Standard Deviation (SD)
Are you reporting how precisely the mean is estimated?
✓ Use Standard Error (SE) or 95% CI
Are you presenting error bars for inference (comparison)?
✓ Use 95% CI = x̄ ± 1.96 × SE
Are you presenting error bars to show data spread?
✓ Use SD error bars, labeled clearly
Are you describing baseline characteristics of study participants?
✓ Use Mean ± SD (APA, AMA, CONSORT convention)
Are you running a t-test or z-test?
✓ Your test statistic uses SE internally: t = (x̄ − μ) / SE

The SPREAD Framework: An Original Decision Tool

The SPREAD framework is an original mnemonic developed for this guide. It gives a structured way to decide which statistic to calculate and report for any dataset.

S
Study

Study the dataset

What type of data is it? How many observations? Is it a full population or a sample? What does each observation represent?

P
Purpose

Pick the objective

Are you describing the data (descriptive) or drawing conclusions about a population (inferential)? This one decision largely determines SD vs SE.

R
Report

Report variability (SD)

If describing individuals, calculate and report SD. It captures how spread out the measurements are in the original units.

E
Estimate

Estimate precision (SE)

If estimating a population mean or comparing groups, calculate SE = SD / √n. Build a 95% CI from it for complete inferential reporting.

A
Apply

Apply the right statistic

Match the statistic to the question. Do not report SE to make data look less variable, and do not report SD when readers need to assess statistical precision.

D
Draw

Draw conclusions carefully

Interpret the result in context. SD: "Individual patients differed by X." SE: "The true mean is likely within Y of our estimate." Label every statistic in your tables and figures.

Error Bars: SD vs SE vs 95% CI

Error bars are a frequent source of confusion in scientific graphs. Three different statistics appear as error bars, and each conveys something different.

Error Bar Type What it Shows When to Use
Mean ± SD Range containing ~68% of individual observations Showing data distribution; describing participants
Mean ± SE Uncertainty around the mean estimate Traditional inferential graphs; smaller bars, easier to see overlap
Mean ± 95% CI 95% confident the true mean falls in this range Modern best practice for inferential comparisons; required by many journals
Journal Recommendation

Nature, Science, Cell, and most biomedical journals now prefer 95% CI error bars over SE bars, because non-overlapping 95% CIs directly indicate statistical significance (p < 0.05 approximately) while overlapping SE bars do not clearly convey the result of a hypothesis test. Always state explicitly which error measure your bars represent — every figure legend must name it.

A practical note: two groups whose SE bars just touch are approximately significantly different at p ≈ 0.05. Two groups whose 95% CI bars just touch are approximately at p ≈ 0.01. These are rough visual rules; the actual p-value always requires the statistical test. See the hypothesis testing guide for details.

Real-World Applications by Field

🏥

Clinical Medicine

Baseline tables use Mean ± SD for patient characteristics. Treatment effects use Mean difference with 95% CI. Lab reference ranges (e.g., normal glucose) are set at Mean ± 2 SD.

🔬

Laboratory Science

Assay variability is reported as coefficient of variation (CV = SD/mean × 100%). Replicate measurements use SE to estimate the precision of a reported concentration.

📊

Data Science & ML

Model evaluation metrics (accuracy, AUC) are often reported with SE or 95% CI across cross-validation folds. SD of residuals indicates regression model fit.

📈

Finance

Asset volatility = SD of returns (annualized). Sharpe ratio = mean excess return / SD. Hypothesis tests on alpha use SE of the mean return.

🏭

Manufacturing

Process capability (Cpk) uses SD of measurements relative to specification limits. Control charts use SE to set control limits for the mean (x̄-chart).

🗳️

Survey Research

Poll results are presented as percentage ± margin of error, where margin of error = z × SE. A poll reporting "52% ± 3%" is using SE, not SD.

Calculating SD and SE in Excel, R, and Python

Excel

Microsoft Excel formulas
; Assume data is in cells A1:A10

; Sample Standard Deviation (n-1 denominator — almost always what you want)
=STDEV(A1:A10)

; Population Standard Deviation (N denominator — only for complete populations)
=STDEVP(A1:A10)

; Sample size
=COUNT(A1:A10)

; Standard Error of the Mean
=STDEV(A1:A10)/SQRT(COUNT(A1:A10))

; 95% Confidence Interval half-width (use for large n; t-based for small n)
=1.96*STDEV(A1:A10)/SQRT(COUNT(A1:A10))

; More accurate 95% CI half-width for small n (uses t-distribution)
=T.INV.2T(0.05, COUNT(A1:A10)-1) * STDEV(A1:A10)/SQRT(COUNT(A1:A10))

Excel's STDEV uses n−1 (Bessel's correction) — this is the sample standard deviation and the one to use in practice. If you have a complete population of values (very rare), use STDEVP. The standard deviation calculator on this site also handles these calculations interactively.

R

R language
# Sample data
x <- c(72, 85, 68, 91, 77, 83, 64, 80)

# Standard deviation (uses n-1 by default)
sd_val <- sd(x)
cat("SD:", sd_val, "\n")  # 9.09

# Standard error of the mean
se_val <- sd(x) / sqrt(length(x))
cat("SE:", se_val, "\n")  # 3.21

# 95% confidence interval (t-based, small sample)
n <- length(x)
ci_half <- qt(0.975, df = n - 1) * se_val
cat("95% CI: [", mean(x) - ci_half, ",", mean(x) + ci_half, "]\n")

# Using the psych package for a quick summary
# install.packages("psych") if needed
library(psych)
describe(x)  # Returns mean, sd, se, and more

Python

Python (NumPy + SciPy)
import numpy as np
from scipy import stats

# Sample data
x = np.array([72, 85, 68, 91, 77, 83, 64, 80])

# Standard deviation (ddof=1 gives sample SD with n-1)
sd_val = np.std(x, ddof=1)
print(f"SD: {sd_val:.4f}")   # 9.0896

# Standard error of the mean
se_val = stats.sem(x)       # scipy.stats.sem uses n-1 denominator
print(f"SE: {se_val:.4f}")   # 3.2129

# Alternatively: manual calculation
se_manual = np.std(x, ddof=1) / np.sqrt(len(x))
print(f"SE (manual): {se_manual:.4f}")

# 95% confidence interval (t-based)
ci = stats.t.interval(confidence=0.95, df=len(x)-1, loc=np.mean(x), scale=se_val)
print(f"95% CI: {ci}")

# pandas describe() includes std but not SE
import pandas as pd
s = pd.Series(x)
print(s.describe())  # std is sample SD; add SE manually
SciPy documentation: scipy.stats.sem — standard error of the mean. NumPy: numpy.std with ddof=1 for sample SD.

Common Misconceptions and Errors

Misconception Why It's Wrong Correct Understanding
"SE is just a smaller SD" ✗ They measure different things ✓ SD describes individual data; SE describes the mean estimate
"Always report SE — it's more precise" ✗ Choosing SE to make data look tighter is misleading ✓ Report SD for descriptive tables; SE for inferential statements
"SE can be larger than SD" ✗ Impossible when n > 1 ✓ SE = SD / √n, so SE < SD always when n > 1
"Larger SE means more variable data" ✗ SE depends on both SD and n ✓ SE can be large due to small n even if SD is moderate
"Error bars showing SE indicate significance" ✗ Overlap of SE bars doesn't determine p-values ✓ Use 95% CI bars or run a formal hypothesis test
"SD and SE are the same when n is large" ✗ They diverge more with larger n ✓ With large n, SD stabilizes but SE keeps shrinking

Reporting SD and SE in Research Papers

Major reporting guidelines are explicit about when to use each measure.

CONSORT Guidelines (Clinical Trials)

Use Mean ± SD for participant baseline characteristics. Use Mean Difference with 95% CI for treatment effects.

The Consolidated Standards of Reporting Trials (CONSORT) guidelines require that continuous outcomes be summarized with the mean and SD for descriptive tables. For the primary treatment effect, a point estimate (mean difference, relative risk, etc.) accompanied by a 95% confidence interval is required. Pure SE reporting without the CI is discouraged because it gives readers the raw material to compute the CI but not the final inferential result. Source: CONSORT Statement.

APA Style (Psychology & Social Sciences)

APA 7th edition requires reporting both the mean and SD in text descriptions of data, using the format M = x, SD = y.

For inferential statements, APA requires reporting the test statistic, degrees of freedom, p-value, and effect size. SE appears as an intermediate calculation in the test statistic formula (t = (x̄ − μ₀) / SE) but is not typically reported alone. Source: American Psychological Association. (2020). Publication Manual of the American Psychological Association (7th ed.).

Entity and Formula Glossary

Term Symbol Definition Formula
Standard Deviation s (sample) / σ (population) Average distance of values from the mean s = √[Σ(xᵢ−x̄)²/(n−1)]
Standard Error SE or SEM SD of the sampling distribution of the mean SE = s / √n
Variance s² (sample) / σ² (population) Average squared deviation from the mean s² = Σ(xᵢ−x̄)²/(n−1)
Mean x̄ (sample) / μ (population) Sum of all values divided by count x̄ = Σxᵢ / n
Sample Size n Number of observations in the sample
Confidence Interval CI Range that likely contains the true population parameter x̄ ± t* × SE
Margin of Error ME Half-width of a confidence interval ME = z* × SE
Sampling Distribution Distribution of a statistic across all possible samples Mean of sampling dist. = μ; SD = σ/√n
Central Limit Theorem CLT Sample means approach normality regardless of population shape Applies when n ≥ 30 (approx.)
Z-score z Distance from mean in SD units z = (x − μ) / σ
t-statistic t Distance from hypothesized mean in SE units t = (x̄ − μ₀) / SE
Coefficient of Variation CV Relative variability; SD as % of mean CV = (s / x̄) × 100%
Bessel's Correction n−1 Denominator correction for unbiased sample variance Use n−1 for samples; N for populations

SD and SE Calculator

Standard Deviation and Standard Error Calculator

Enter your data values separated by commas, spaces, or line breaks. The calculator shows SD, SE, mean, variance, and 95% CI with step-by-step workings.

Standard Deviation (SD)
Standard Error (SE)
Mean (x̄)
Variance (s²)

Frequently Asked Questions

What is the difference between standard deviation and standard error?

Standard deviation tells you how spread out individual data values are within a sample or population. Standard error tells you how precisely the sample mean estimates the true population mean. SD is a property of the data; SE is a property of the estimate. The two are linked by SE = SD / √n.

Is standard error always smaller than standard deviation?

Yes, whenever n > 1. Because SE = SD / √n and √n > 1 for any n > 1, SE must be smaller than SD. With n = 4, SE = SD/2. With n = 100, SE = SD/10. The only case where they are equal is n = 1, which is not a useful sample size for estimating anything.

When should I report SD versus SE in a research paper?

Report SD when describing the characteristics of your sample — for example, in the "participants" or "baseline characteristics" table. Report SE (or, better, 95% CI) when making inferential statements — for example, when reporting treatment effects, comparing means, or discussing the precision of an estimated value. The CONSORT guidelines for clinical trials make this distinction explicit.

How does standard error relate to confidence intervals?

The 95% confidence interval for the mean is x̄ ± 1.96 × SE (for large samples) or x̄ ± t* × SE (for small samples, where t* is the critical value from the t-distribution with n−1 degrees of freedom). The SE is literally the building block of every confidence interval for a mean. See the confidence interval for the mean guide for step-by-step examples.

What happens to SE as sample size increases?

SE decreases as 1/√n. To halve the SE, you need to quadruple the sample size. This is the law of diminishing returns in sampling: going from n=10 to n=40 halves the SE, but going from n=100 to n=400 is needed to halve the SE again. This relationship is central to sample size planning — see the sample size calculator.

Is SEM the same as standard error?

Yes. SEM (standard error of the mean) and SE are the same thing in most contexts. The full term "standard error of the mean" is used to distinguish it from the standard error of other estimates (such as the standard error of a regression coefficient or the standard error of a proportion). When researchers write "SE" without qualification in papers about means, they almost always mean SEM = s / √n.

Can I calculate SD from SE?

Yes. Since SE = SD / √n, rearranging gives SD = SE × √n. This conversion is useful when reading published papers that report only SE: multiply by the square root of the sample size to recover the standard deviation and understand how variable individual measurements were.

Sources and Further Reading

  • Altman, D.G. & Bland, J.M. (2005) — "Standard deviations and standard errors." British Medical Journal, 331, 903. A concise and widely cited explanation of the distinction between SD and SE. bmj.com
  • NIST Engineering Statistics Handbook — Section 6.3: Measures of Scale. National Institute of Standards and Technology. itl.nist.gov
  • CONSORT Statement — Consolidated Standards of Reporting Trials: Extension for abstracts. Reporting guidelines for clinical trials, including SD vs. SE conventions. consort-statement.org
  • Moore, D.S., McCabe, G.P., & Craig, B.A. (2017)Introduction to the Practice of Statistics, 9th ed. W.H. Freeman. Standard undergraduate reference covering sampling distributions and the SE formula.
  • American Statistical AssociationStatistical Significance and P-values. Guidance on reporting uncertainty in statistical results. amstat.org
  • OpenStax Statistics — Free, peer-reviewed introductory statistics textbook. Chapters on sampling distributions and confidence intervals. openstax.org
  • SciPy Documentationscipy.stats.sem: Standard error of the mean function. docs.scipy.org