6.3 Sampling Distributions & Central Limit Theorem

Key Takeaways

  • The Central Limit Theorem (CLT) guarantees that the sample mean distribution $\bar{X}$ approaches normality with mean $\mu$ and standard variance $\frac{\sigma^2}{n}$ as $n \ge 30$, regardless of the underlying population distribution shape.
  • The Standard Error of the Mean ($SE_{\bar{x}} = \frac{\sigma}{\sqrt{n}}$ or $\frac{s}{\sqrt{n}}$) quantifies sampling variability, decreasing inversely with the square root of sample size.
  • The sampling distribution of a proportion $\hat{p}$ has mean $p$ and standard error $SE_{\hat{p}} = \sqrt{\frac{p(1-p)}{n}}$, valid under the normal approximation when $np \ge 5$ and $n(1-p) \ge 5$.
  • When sampling without replacement from a finite population of size $N$ where $n/N > 0.05$, the Finite Population Correction (FPC) factor $\sqrt{\frac{N-n}{N-1}}$ must adjust the standard error.
Last updated: July 2026

6.3 Sampling Distributions & Central Limit Theorem

In quality engineering, measuring an entire population of manufactured product is often cost-prohibitive or destructive. Consequently, quality decisions rely on statistics calculated from samples. A sampling distribution is the probability distribution of a sample statistic (such as sample mean $\bar{X}$ or sample proportion $\hat{p}$) obtained from all possible random samples of size $n$ drawn from a population.


The Central Limit Theorem (CLT)

The Central Limit Theorem is one of the most powerful principles in statistics. It explains why normal distribution methods can be applied to real-world processes even when the underlying population is non-normal.

Formal Statement of CLT

Let $X_1, X_2, \dots, X_n$ be a random sample of size $n$ drawn from any population with finite mean $\mu$ and finite variance $\sigma^2$. As the sample size $n$ increases, the sampling distribution of the sample mean $\bar{X}$ approaches a normal distribution with:

  • Expected Value (Mean): $E[\bar{X}] = \mu_{\bar{x}} = \mu$
  • Variance: $Var(\bar{X}) = \sigma_{\bar{x}}^2 = \frac{\sigma^2}{n}$
  • Standard Deviation (Standard Error): $SE_{\bar{x}} = \sigma_{\bar{x}} = \frac{\sigma}{\sqrt{n}}$

XˉdN(μ,σ2n)as n\bar{X} \xrightarrow{d} N\left(\mu, \frac{\sigma^2}{n}\right) \quad \text{as } n \to \infty

Key Rules of Thumb for CLT Application

  1. Symmetric Populations: If the underlying population is already normal, $\bar{X}$ is perfectly normally distributed for any sample size ($n \ge 1$).
  2. Moderately Skewed Populations: $\bar{X}$ becomes approximately normal for $n \ge 15$ to $20$.
  3. Severely Skewed or Bimodal Populations: $n \ge 30$ is the standard ASQ benchmark rule required to safely assume normality of sample means.

Standard Error of the Mean ($SE_{\bar{x}}$)

The Standard Error of the Mean quantifies the dispersion of sample means around the true population mean $\mu$.

SExˉ=σn(or sn when σ is unknown)SE_{\bar{x}} = \frac{\sigma}{\sqrt{n}} \quad \text{(or } \frac{s}{\sqrt{n}} \text{ when } \sigma \text{ is unknown)}

The Square Root Rule

Because $SE$ is inversely proportional to $\sqrt{n}$, reducing standard error by half requires quadrupling the sample size $n$.

  • Increasing $n$ from 25 to 100 reduces $SE$ by $50%$.
  • Increasing $n$ from 100 to 400 reduces $SE$ by another $50%$.

Sampling Distribution of Proportions (Attribute Data)

When evaluating attribute quality data (conforming vs. non-conforming), the sample proportion is $\hat{p} = \frac{X}{n}$, where $X$ is the number of non-conforming items in a sample of size $n$.

Normal Approximation for Proportions

By the Central Limit Theorem, the distribution of $\hat{p}$ approaches a normal distribution $N\left(p, \frac{p(1-p)}{n}\right)$ provided the sample size satisfies the two conditions:

np5andn(1p)5np \ge 5 \quad \text{and} \quad n(1-p) \ge 5

  • Expected Mean of Proportion: $\mu_{\hat{p}} = p$

  • Standard Error of Proportion: SEp^=σp^=p(1p)nSE_{\hat{p}} = \sigma_{\hat{p}} = \sqrt{\frac{p(1-p)}{n}}

  • Standard Normal Z-transformation for Proportions: Z=p^pp(1p)nZ = \frac{\hat{p} - p}{\sqrt{\frac{p(1-p)}{n}}}


Finite Population Correction (FPC) Factor

When sampling without replacement from a finite population of size $N$, individual draws are not independent. If the sample size $n$ represents more than $5%$ of the population ($n/N > 0.05$), the standard error formula must be multiplied by the Finite Population Correction (FPC) factor:

FPC=NnN1\text{FPC} = \sqrt{\frac{N - n}{N - 1}}

Adjusted Standard Error Formulas

  • For Sample Means: SExˉ,adj=(σn)NnN1SE_{\bar{x},\text{adj}} = \left(\frac{\sigma}{\sqrt{n}}\right) \sqrt{\frac{N - n}{N - 1}}
  • For Sample Proportions: SEp^,adj=(p(1p)n)NnN1SE_{\hat{p},\text{adj}} = \left(\sqrt{\frac{p(1-p)}{n}}\right) \sqrt{\frac{N - n}{N - 1}}

Notice that as population size $N \to \infty$, the FPC factor approaches $1.0$, rendering correction unnecessary for large production lots.


Summary Table of Sampling Distributions & Standard Errors

ParameterSample StatisticStandard Error ($SE$)Normal Approximation Condition
Population Mean $\mu$Sample Mean $\bar{x}$$SE_{\bar{x}} = \frac{\sigma}{\sqrt{n}}$$n \ge 30$ (or normal population)
Mean (Finite Pop $N$)Sample Mean $\bar{x}$$SE = \frac{\sigma}{\sqrt{n}}\sqrt{\frac{N-n}{N-1}}$$n/N > 0.05$ and $n \ge 30$
Proportion $p$Sample Proportion $\hat{p}$$SE_{\hat{p}} = \sqrt{\frac{p(1-p)}{n}}$$np \ge 5$ and $n(1-p) \ge 5$

Worked Numerical Examples

Example 1: CLT Probability Calculation for Sample Means

A manufacturing process produces high-strength structural cables with mean tensile strength $\mu = 500\text{ N}$ and standard deviation $\sigma = 40\text{ N}$. The tensile strength distribution is positively skewed. A quality auditor selects a random sample of $n = 64$ cables.

What is the probability that the sample mean tensile strength $\bar{X}$ exceeds $510\text{ N}$?

  1. Verify CLT Applicability: Sample size $n = 64 \ge 30$. $\bar{X}$ is approximately normally distributed.
  2. Calculate Standard Error ($SE_{\bar{x}}$): SExˉ=σn=4064=408=5.0 NSE_{\bar{x}} = \frac{\sigma}{\sqrt{n}} = \frac{40}{\sqrt{64}} = \frac{40}{8} = 5.0\text{ N}
  3. Calculate Z-score: Z=xˉμSExˉ=5105005.0=105.0=2.00Z = \frac{\bar{x} - \mu}{SE_{\bar{x}}} = \frac{510 - 500}{5.0} = \frac{10}{5.0} = 2.00
  4. Find Probability: P(Xˉ>510)=P(Z>2.00)=1P(Z2.00)=10.9772=0.0228 (or 2.28%)P(\bar{X} > 510) = P(Z > 2.00) = 1 - P(Z \le 2.00) = 1 - 0.9772 = 0.0228 \text{ (or } 2.28\%\text{)}

Example 2: Sampling Distribution of Proportions with FPC

An inventory batch consists of $N = 500$ precision valves. Historical data shows $p = 0.10$ defect rate. An inspector draws a sample of $n = 100$ valves without replacement.

Calculate the adjusted standard error of the sample proportion $SE_{\hat{p},\text{adj}}$.

  1. Check FPC Threshold: $n / N = 100 / 500 = 0.20$ ($20%$). Since $0.20 > 0.05$, FPC is required.
  2. Compute Standard Error without Correction: SEp^=0.10×0.90100=0.0009=0.030SE_{\hat{p}} = \sqrt{\frac{0.10 \times 0.90}{100}} = \sqrt{0.0009} = 0.030
  3. Compute FPC Multiplier: FPC=5001005001=400499=0.80160.8953\text{FPC} = \sqrt{\frac{500 - 100}{500 - 1}} = \sqrt{\frac{400}{499}} = \sqrt{0.8016} \approx 0.8953
  4. Calculate Adjusted Standard Error: SEp^,adj=0.030×0.8953=0.02686SE_{\hat{p},\text{adj}} = 0.030 \times 0.8953 = 0.02686

CQE Exam Tips & Strategy

  • Sample Mean vs. Individual Value: Always check if a question asks for the probability of an individual item $X > k$ (use $\sigma$) or a sample mean $\bar{X} > k$ (use $\sigma / \sqrt{n}$).
  • Impact of $n$ on Dispersion: The sampling distribution of $\bar{X}$ is always narrower (less variable) than the population distribution by a factor of $\sqrt{n}$.
  • FPC Requirement Check: Remember to check $n/N > 0.05$ on finite batch questions before using basic $SE$ formulas.
Loading diagram...
Convergence of Non-Normal Sampling Distribution to Normality under CLT
Test Your Knowledge

If a quality engineer increases the sample size n from 25 to 100, what happens to the standard error of the mean (SE)?

A
B
C
D
Test Your Knowledge

A packaging process has a mean fill weight μ = 16.0 oz and standard deviation σ = 0.4 oz (skewed population). If a sample of n = 64 packages is taken, what is the probability that the sample mean weight is less than 15.9 oz?

A
B
C
D
Test Your Knowledge

A quality inspector draws a sample of n = 50 parts without replacement from a small lot of N = 200 parts. Which adjustment factor must be applied when computing the standard error of the sample mean?

A
B
C
D