🎲  Sample Standard Deviation

Sample Standard Deviation#

An estimate of population spread from a sample, using n - 1 in the denominator.

Important

✨ AI-generated content. This page was written with the assistance of an AI language model and is provided as a learning aid. Despite careful review, it may still contain mistakes, omissions, or out-of-date information. Whether you are new to the topic, a team lead, or a senior practitioner, treat it as a starting point rather than an authoritative reference: read it critically and independently verify anything you act on (code, commands, figures, and factual claims) against official documentation and primary sources before relying on it.

What it is#

The sample standard deviation \(s\) measures how spread out the values in a sample are around the sample mean \(\bar{x}\). It is the square root of the sample variance — roughly, the average distance of a data point from the mean.

The formula and Bessel’s correction#

\[s = \sqrt{\frac{\sum_{i=1}^{n} (x_i - \bar{x})^2}{n - 1}}.\]

The denominator is \(n - 1\), not \(n\)Bessel’s correction. Dividing by \(n\) would underestimate the true spread, because the deviations are taken from the sample mean (which is itself fitted to the data); using \(n - 1\) makes \(s^2\) an unbiased estimator of the population variance \(\sigma^2\).

Worked example#

For \(\{5, 7, 9\}\): the mean is \(\bar{x} = 7\); deviations are \(-2, 0, +2\); squared, \(4, 0, 4\), summing to 8; divide by \(n - 1 = 2\) to get 4; the square root is \(s = 2\).

Reading it#

A small \(s\) means points cluster near the mean (low variability); a large \(s\) means they’re spread out; \(s = 0\) means every value is identical. The population standard deviation \(\sigma\) uses \(N\) in the denominator (the whole population); the sample version uses \(n - 1\) (an estimate of \(\sigma\)).

Where it shows up#

\(s\) is the raw material of inference: it feeds the standard error (\(SE = s/\sqrt{n}\)), the t-test, ANOVA and regression, and the confidence intervals built around sample means.


Theme: Probability & Statistics Foundations  ·  All terminology



See also

Source article Adapted (context, re-expressed) in our own words from: Sample Standard Deviation (insightful-data-lab.com).

Tags: purpose: reference topic: terminology level: beginner