Compute the Standard Error of the Mean (SEM) from raw data or summary statistics. Visualize the theoretical sampling distribution, confidence intervals, and understand the precision of your sample estimate.
The Standard Error of the Mean (SEM) quantifies how much the sample mean (x̄) is expected to vary from the true population mean (μ). It is a measure of precision: a smaller SE indicates a more reliable estimate. The formula is fundamental to inferential statistics: SE = s / √n, where s is the sample standard deviation and n is the sample size.
$$ SE = \frac{s}{\sqrt{n}} \quad \text{and} \quad \text{95% CI: } \bar{x} \pm z_{0.025} \cdot SE $$
For large samples (n ≥ 30), the sampling distribution approximates normality (Central Limit Theorem).
An agronomist measures corn yield (bushels/acre) from 30 plots: sample mean = 185, s = 12. The standard error = 12/√30 ≈ 2.19 bushels. The 95% confidence interval = [185 - 1.96×2.19, 185 + 1.96×2.19] ≈ [180.7, 189.3]. This interval suggests the true population mean yield is likely between these values, helping farmers make informed decisions about fertilizer application. Without SEM, the point estimate alone would ignore sampling variability.
The concept of standard error was developed in the late 19th and early 20th centuries, notably by Karl Pearson and William Sealy Gosset (aka "Student"). Gosset's work on the t-distribution laid the groundwork for small-sample inference. The Central Limit Theorem, formalized by Laplace and Lyapunov, ensures that regardless of population distribution, the sampling distribution of the mean approaches normality as sample size grows.
| Sample Size (n) | Standard Deviation (s) | Standard Error (SE) | 95% Margin of Error |
|---|---|---|---|
| 10 | 5.0 | 1.581 | 3.10 |
| 30 | 5.0 | 0.913 | 1.79 |
| 100 | 5.0 | 0.500 | 0.98 |
| 500 | 5.0 | 0.224 | 0.44 |
When sampling more than 5% of a finite population, the standard error is adjusted by the finite population correction factor: √((N-n)/(N-1)). Our calculator assumes infinite/sufficiently large populations, which is standard for most research contexts. For highly skewed data, bootstrap methods may provide alternative SE estimates, but the classic formula remains robust under the central limit theorem for moderate n.