Central Limit Theorem Calculator
Calculate the sampling distribution of the mean using the Central Limit Theorem
About the Central Limit Theorem
The Central Limit Theorem states that the sampling distribution of the sample mean approaches a normal distribution as sample size increases, regardless of the population distribution.
Key Formulas:
- Standard Error: SE = σ / √n
- Z-Score: z = (x̄ - μ) / SE
- Rule of thumb: n ≥ 30 for CLT to apply
What Is the Central Limit Theorem?
The Central Limit Theorem (CLT) is arguably the most important result in statistics. It states that the sampling distribution of the sample mean approaches a normal distribution as the sample size increases, regardless of the shape of the population distribution. Whether your population is uniform, skewed, bimodal, or even discrete, the distribution of sample means from repeated samples of size n will become approximately normal when n is large enough.
This theorem is the reason why z-tests, t-tests, and confidence intervals work with real-world data — even when the underlying data is far from normal. The CLT guarantees that with a sufficiently large sample (typically n ≥ 30), the sample mean's sampling distribution is approximately normal with mean μ and standard error σ/√n, no matter what distribution generated the original data.
This calculator demonstrates the CLT: enter the population mean and standard deviation, a sample size, and optionally an observed sample mean to compute the standard error, z-score, cumulative probability, and 95%/99% confidence intervals for the sample mean.
Central Limit Theorem Formulae
The CLT provides the bridge from a population with any distribution to a normally distributed sampling distribution for the mean. The standard error shrinks as √n, reflecting the increased precision of larger samples.
CLT Standard Error
Where:
- σ= Population standard deviation — the spread of the original data
- n= Sample size — larger n produces a smaller SE and narrower sampling distribution
- μ= Population mean — the expected value of the sampling distribution of the mean
- x̄= Observed sample mean — convert to z = (x̄ − μ) / SE to find its probability
Understanding the CLT in Practice
The CLT has profound practical implications. It tells you that even if your data is skewed — like income, reaction times, or hospital stay duration — the average of a large enough sample will be approximately normally distributed. This normality of the sample mean is what makes classical statistical inference possible.
| Sample Size | SE (vs σ) | 95% CI Width |
|---|---|---|
| n = 10 | σ / 3.16 | ±1.24σ around μ |
| n = 30 | σ / 5.48 | ±0.36σ around μ |
| n = 100 | σ / 10 | ±0.20σ around μ |
| n = 400 | σ / 20 | ±0.10σ around μ |
Notice that the precision improves with the square root of n — quadrupling the sample size halves the standard error. The 95% CI is μ ± 1.96×SE; the 99% CI uses z = 2.576. When you enter an observed sample mean, the calculator computes the z-score and the probability of observing a sample mean that extreme or more extreme.
How to Use This Calculator
Explore the Central Limit Theorem with four inputs:
- Population Mean (μ): Enter the true population mean. This is the center of the sampling distribution.
- Population Standard Deviation (σ): The spread of the original population. Must be greater than 0. The sampling distribution's spread is σ/√n.
- Sample Size (n): The number of observations in your sample. Enter any positive integer. The calculator shows whether n ≥ 30 (the rule-of-thumb threshold for CLT applicability).
- Sample Mean (x̄) — optional: If you have an observed sample mean, enter it to compute the z-score and the probability of observing that value or a more extreme one.
- Read the results: The calculator outputs the standard error, z-score, cumulative probability, and 95%/99% confidence intervals for the sampling distribution.
Real-World Applications
The CLT is the theoretical backbone of statistical quality control. When a manufacturer samples n items and computes the sample mean, the CLT guarantees that this mean — even from a non-normal process — follows an approximately normal sampling distribution. Control chart limits at ±3 SE are valid regardless of the underlying distribution for n ≥ 30.
In polling and survey research, the CLT justifies the margin of error reported with poll results. Even though individual voting preferences are binary (Bernoulli), the sample proportion from hundreds of respondents is approximately normal, allowing pollsters to compute confidence intervals. In finance, the CLT underlies portfolio risk models where daily returns — often heavy-tailed — produce approximately normal average returns over longer horizons.
In medical research, the CLT allows investigators to use t-tests and ANOVA on patient outcomes that may be individually non-normal, as long as sample sizes are adequate. This universality makes the CLT perhaps the single most relied-upon theorem in applied statistics.
Worked Examples
Standard Error for IQ Testing
Problem:
IQ scores have μ = 100 and σ = 15. A researcher takes a sample of 36 people. What is the standard error? What is the 95% CI for the sample mean? If the sample mean is 105, is this unusual?
Solution Steps:
- 1Step 1: Enter μ = 100, σ = 15, n = 36, x̄ = 105.
- 2Step 2: SE = 15/√36 = 15/6 = 2.5. The sampling distribution of the mean has SD = 2.5.
- 3Step 3: 95% CI for sample means = 100 ± 1.96×2.5 = [95.1, 104.9]. The observed x̄ = 105 is just outside this interval.
- 4Step 4: z = (105−100)/2.5 = 2.0. P(x̄ ≥ 105) ≈ 1 − 0.9772 = 0.0228, or about 2.3%.
Result:
A sample mean of 105 has a z-score of 2.0. The probability of observing a sample mean of 105 or higher, assuming the population mean is truly 100, is about 2.3% — unusual but not impossible. This sample mean falls outside the 95% CI, suggesting the sample may come from a population with a higher true mean.
Manufacturing Process Check
Problem:
A filling machine has μ = 500ml and σ = 4ml. A sample of n = 16 bottles gives x̄ = 502.5ml. Is this sample mean significantly different from 500? What's the z-score?
Solution Steps:
- 1Step 1: Enter μ = 500, σ = 4, n = 16, x̄ = 502.5.
- 2Step 2: SE = 4/√16 = 4/4 = 1.0. z = (502.5−500)/1.0 = 2.5.
- 3Step 3: P(x̄ ≥ 502.5) = 1 − 0.9938 = 0.0062 (one-tailed). Two-tailed: p = 0.0124.
- 4Step 4: Since n = 16 < 30, the CLT approximation is less reliable — but with known σ and likely normal fill weights, the z-score is still informative.
Result:
With z = 2.5 and a two-tailed p-value of about 0.012, the sample mean is significantly different from 500ml at α = 0.05. The machine may be overfilling — an investigation into calibration is warranted. However, with n = 16, confirm that the fill weights are approximately normal.
Large Sample Precision Gain
Problem:
Compare two studies of the same population (μ = 50, σ = 20). Study A uses n = 25. Study B uses n = 100. What are the standard errors and 99% CIs? How much precision is gained?
Solution Steps:
- 1Step 1: Study A: n=25, SE = 20/5 = 4.0. 99% CI = 50 ± 2.576×4 = [39.7, 60.3].
- 2Step 2: Study B: n=100, SE = 20/10 = 2.0. 99% CI = 50 ± 2.576×2 = [44.8, 55.2].
- 3Step 3: The CI width shrinks from 20.6 to 10.4 — the estimate is roughly twice as precise.
- 4Step 4: Quadrupling n halved the SE and halved the CI width. This square-root relationship governs all sample size decisions.
Result:
Increasing the sample from 25 to 100 reduces the standard error from 4.0 to 2.0 and cuts the CI width in half. The precision gain follows the √n rule — a 4× increase in n doubles precision. This illustrates why large samples are essential for precise estimates.
Tips & Best Practices
- ✓The CLT is why n ≥ 30 is the standard threshold — at this size, the sampling distribution is approximately normal for most populations.
- ✓The standard error halves when you quadruple n — this square-root relationship means large precision gains require large sample increases.
- ✓If σ is unknown, use the sample standard deviation s and the t-distribution instead of z-scores and normal probabilities.
- ✓For severely skewed data (extreme right tail), use n ≥ 50 to ensure the CLT approximation holds.
- ✓The CLT guarantees normality of the sample mean, not the data itself — your raw data can be as skewed as ever, and the mean's distribution still becomes normal.
Frequently Asked Questions
Sources & References
Last updated: 2026-06-06
Help us improve!
How would you rate the Central Limit Theorem Calculator?
Editorial Note
MyCalcBuddy Editorial Team
This page is maintained as an educational calculator reference.
Formula Source: Standard Mathematical References
by Various