Sampling Distribution of Sample Proportion Calculator

Explore the sampling distribution of p̂. Calculate mean, standard error, probabilities, and quantiles. Visualize the bell curve with normal approximation conditions.

Sampling Distribution of Sample Proportion

True population proportion (0 to 1)
Mean (μₚ̂)
0.500000
E(p̂) = p — the sampling distribution is centered at p
Standard Error
0.015811
SE = √(p(1−p)/n)
Normal Approx?
✓ Valid
np = 500.0, n(1−p) = 500.0 — both need ≥ 10
P(p̂ < {formatNumber(result.ph, 3)})
0.9711
z = 1.8974
P(p̂ > {formatNumber(result.ph, 3)})
0.0289
Right-tail probability
95% Range
[0.4690, 0.5310]
95% of sample proportions fall here

Key Quantiles

Quantilep̂ Valuez-score
2.5th percentile0.4690−1.96
5th percentile0.4740−1.645
Mean (50th)0.50000
95th percentile0.5260+1.645
97.5th percentile0.5310+1.96

Standard Error by Sample Size

nSE95% MOE
250.100000±19.60%
500.070711±13.86%
1000.050000±9.80%
2000.035355±6.93%
5000.022361±4.38%
1,0000.015811±3.10%
2,0000.011180±2.19%
5,0000.007071±1.39%

Visual: Sampling Distribution

0.437
0.445
0.453
0.460
0.468
0.476
0.484
0.492
0.500
0.508
0.516
0.524
0.532
0.540
0.547
0.555
Blue = mean, Red = observed p̂
Planning notes, formulas, and examples

About the Sampling Distribution of Sample Proportion Calculator

When you draw a random sample from a population with true proportion p, the sample proportion p̂ changes from sample to sample. The sampling distribution of p̂ describes that variation and is approximately normal when the sample is large enough.

This calculator lets you enter p and n, then shows the mean, standard error, quantiles, and tail probabilities for the resulting distribution. You can also ask how unusual an observed p̂ would be if the population proportion really were p.

That makes it useful for survey planning, confidence intervals, and hypothesis tests about proportions.

When This Page Helps

The sampling distribution is the bridge between a population proportion and the sample proportions you actually observe. Showing the distribution, the standard error, and the approximation checks together makes it easier to judge whether a sample result is plausible or unusual.

How to Use the Inputs

  1. Enter the population proportion p (the true probability of success).
  2. Enter the sample size n.
  3. Optionally enter an observed p̂ to calculate its probability.
  4. Optionally enter population size for finite population correction.
  5. Review the mean, standard error, and normal approximation validity.
  6. Examine the probabilities and quantile table.
  7. Use the SE-by-sample-size table to plan future samples.
Formula used
Sampling Distribution of p̂: Mean: μₚ̂ = p Standard Error: SE = √(p(1−p)/n) With FPC: SE_adj = SE × √((N−n)/(N−1)) Normal Approximation Conditions: np ≥ 10 and n(1−p) ≥ 10 Z-score for observed p̂: z = (p̂ − p) / SE P(p̂ < x) = Φ(z)

Example Calculation

Result: P(p̂ > 0.53) = 0.0287

With p = 0.5 and n = 1,000, the standard error is 0.0158. An observed p̂ = 0.53 has z = 1.90, giving P(p̂ > 0.53) = 0.029. There's about a 2.9% chance of seeing 53% or more purely by sampling variability if the true proportion is 50%.

Tips & Best Practices

  • The normal approximation requires both np ≥ 10 and n(1−p) ≥ 10. For rare events (p near 0 or 1), you need very large samples.
  • Standard error decreases with √n: quadrupling the sample size halves the SE.
  • Finite population correction only matters when n/N > 5%. For most practical surveys, FPC is negligible.
  • The sampling distribution is symmetric around p when the normal approximation holds.
  • This is the theoretical foundation for confidence intervals and hypothesis tests about proportions.
  • For very small samples or extreme proportions, use exact binomial probabilities instead.

Binomial To Normal

Each observation is a Bernoulli trial with success probability p, so the number of successes follows a Binomial(n, p) distribution and p̂ = count/n. As n grows, that distribution becomes more nearly normal, which is why the normal approximation is so common in introductory inference.

Why p = 0.5 Is A Conservative Choice

The standard error SE = √(p(1−p)/n) is largest at p = 0.5. That is why sample-size planning often uses p = 0.5 when you do not know the population proportion in advance: it gives the widest, most conservative precision estimate.

Survey Use

The distribution helps you answer practical questions about how much a sample proportion can move around, how large a sample you need for a desired margin of error, and when exact binomial probabilities are a better choice than the normal approximation.

Sources & Methodology

Last updated:

Frequently Asked Questions

  • It describes the probability distribution of sample proportions across all possible samples of size n from the population. By the Central Limit Theorem, it's approximately N(p, p(1−p)/n) for large samples.