🎲  Sample Mean

Sample Mean#

The arithmetic average of a sample, used to estimate the population mean.

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 mean \(\bar{x}\) is the arithmetic average of a sample — the sum of the observations divided by their count. It is the statistic used to estimate the true population mean \(\mu\):

\[\bar{x} = \frac{1}{n}\sum_{i=1}^{n} x_i.\]

Examples#

Test scores \(\{80, 85, 90, 95, 100\}\) give \(\bar{x} = 450/5 = 90\). Ten people with total height 1,720 cm give \(\bar{x} = 172\) cm.

Its three key properties#

  • Unbiased\(\mathbb{E}[\bar{x}] = \mu\); on average the sample mean equals the population mean.

  • Sampling distribution (CLT) — for large \(n\), the Central Limit Theorem makes \(\bar{x}\) approximately normal,

    \[\bar{x} \sim N\!\left(\mu, \frac{\sigma^2}{n}\right),\]

    with standard error of the mean \(SE = \sigma/\sqrt{n}\) — so its variability shrinks as \(n\) grows.

  • Outlier-sensitive — being a sum, the mean is pulled by extreme values (unlike the median).

Where it shows up#

The sample mean is everywhere: descriptive summaries, estimating \(\mu\), hypothesis tests (the one-sample t-test), and confidence intervals. It is the best unbiased estimator of the population mean.


Theme: Probability & Statistics Foundations  ·  All terminology



See also

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

Tags: purpose: reference topic: terminology level: beginner