AP STATISTICS • SAMPLING DISTRIBUTIONS

Sampling Distributions for Sample Proportions

Understanding how sample proportions vary from sample to sample enables powerful inference about population parameters.

Historical Context & Motivation

The question of how reliably a sample reflects a larger population has occupied mathematicians and scientists for centuries. When a pollster surveys 1,000 voters and reports that 54% support a candidate, the natural follow-up is: how close is that 54% to the true proportion in the entire electorate? Answering this question requires understanding the sampling distribution of the sample proportion—the probability distribution that describes how p̂ (the sample proportion) behaves across all possible random samples of a given size. The development of this idea spans several centuries and reflects a deep interplay between probability theory, mathematical analysis, and practical statistical reasoning.

1713
Bernoulli's Ars Conjectandi
Jakob Bernoulli published a posthumous proof of the Law of Large Numbers, establishing that as sample size grows, the sample proportion converges to the true population proportion. This was the first rigorous connection between samples and populations.
1733
De Moivre's Normal Approximation
Abraham de Moivre showed that the binomial distribution could be approximated by a bell-shaped curve for large n, laying the mathematical groundwork for using the normal distribution to model sample proportions.
1812
Laplace Generalizes the CLT
Pierre-Simon Laplace extended de Moivre's result into the Central Limit Theorem, demonstrating that sums and averages of independent random variables tend toward normality regardless of the original distribution—making the normal model broadly applicable.
1935
Neyman's Confidence Intervals
Jerzy Neyman formalized confidence interval theory, directly leveraging the sampling distribution of p̂ to provide rigorous interval estimates for population proportions—a technique central to modern survey methodology.

These historical developments converge on a single powerful idea: even though individual samples are imperfect reflections of their populations, the pattern of variation across many samples is predictable. This predictability is precisely what allows us to quantify uncertainty through margins of error, confidence intervals, and hypothesis tests. The central question this lesson addresses is: if we know the true population proportion p, what can we say about the shape, center, and spread of p̂ across all possible samples of size n?

Core Principles & Definitions

Before examining the mathematical machinery, it is essential to establish the foundational concepts that govern how sample proportions behave. Each principle below builds upon the preceding one: we start with the distinction between a parameter and a statistic, move to the concept of a sampling distribution, and then state the conditions under which a remarkably clean normal model applies.

1

Parameter vs. Statistic

The population proportion p is a fixed parameter describing the true fraction of successes in the population. The sample proportion p̂ (read 'p-hat') is a statistic computed from data: p̂ = X/n, where X is the count of successes in n independent trials. Because p̂ changes from sample to sample, it is a random variable.
2

Sampling Distribution Defined

The sampling distribution of p̂ is the probability distribution of p̂ over every possible random sample of size n drawn from the population. It tells us which values of p̂ are likely, which are rare, and how tightly p̂ clusters around the true p.
3

Center: Unbiasedness

The mean of the sampling distribution equals the population proportion: μ = p. This means p̂ is an unbiased estimator of p: on average, across many samples, p̂ hits the target exactly.
4

Spread: Standard Deviation

The standard deviation of p̂ is σ = √(p(1 − p)/n). Larger samples produce smaller spread, meaning p̂ concentrates more tightly around p.
5

Shape: Normal Approximation

When the Large Counts Condition is met (np ≥ 10 and n(1 − p) ≥ 10), the sampling distribution of p̂ is approximately normal. This condition ensures enough expected successes and failures for the bell curve to apply.
KEY TAKEAWAY
Think of taking repeated samples like repeatedly launching darts at a target. The center of the dartboard is p, and each throw lands at some p̂. An unbiased estimator means the darts are centered on the bullseye—no systematic pull in any direction. The standard deviation σ describes how tightly the darts cluster: larger n is like a more skilled thrower whose darts group tightly around the center. The normal model describes the circular, bell-shaped cloud formed by thousands of throws.

Visual Explanation: From Population to Sampling Distribution

The following diagram illustrates the conceptual process of constructing a sampling distribution. Imagine a large population with true proportion p = 0.40. We repeatedly draw random samples of size n = 50, compute p̂ for each sample, and then plot the distribution of all those p̂ values. The resulting histogram forms the sampling distribution, which—when the Large Counts Condition is satisfied—takes on the characteristic bell shape of a normal distribution centered at p.

The diagram traces the process from a population with p = 0.40, through repeated sampling at n = 50, to the resulting bell-shaped sampling distribution of p̂. The dashed pink line marks the center at p = 0.40, while the amber dashed lines indicate ±1 standard deviation (σ ≈ 0.069).

Notice several important features in the diagram. First, each individual sample produces a different p̂ value—0.38, 0.44, 0.36, and so on—reflecting natural sampling variability. Second, when we aggregate thousands of these p̂ values, the histogram forms a smooth, symmetric bell curve centered on the true population proportion p = 0.40. Third, the spread of this distribution—governed by σ = √(0.40 × 0.60 / 50) ≈ 0.069—quantifies how much p̂ typically deviates from p in a single sample. About 68% of all sample proportions fall within one standard deviation of the center, and about 95% fall within two standard deviations.

Mathematical Framework

The sampling distribution of p̂ arises from the binomial distribution. If each observation in a sample of size n independently has probability p of being a "success," then the count X of successes follows a Binomial(n, p) distribution. Since p̂ = X/n, the properties of p̂ follow directly from those of X. The three key formulas below describe the center, spread, and approximate shape of the distribution of p̂.

MEAN OF THE SAMPLING DISTRIBUTION
μ_p̂ = p
The expected value of p̂ equals the population proportion p, confirming that p̂ is an unbiased estimator. No matter the sample size, the center of the sampling distribution always aligns with the true parameter.
STANDARD DEVIATION OF THE SAMPLING DISTRIBUTION
σ_p̂ = √( p(1 − p) / n )
Here p is the population proportion and n is the sample size. This formula assumes either an infinite population or sampling with replacement. When sampling without replacement from a finite population of size N, multiply by the finite population correction factor √((N − n)/(N − 1)). The correction is negligible when n < 10% of N (the 10% Condition).
NORMAL APPROXIMATION (LARGE COUNTS CONDITION)
p̂ ~ approximately N( p, √(p(1−p)/n) ) when np ≥ 10 and n(1−p) ≥ 10
The Large Counts Condition ensures that the expected number of successes (np) and expected number of failures (n(1 − p)) are both at least 10. When this holds, the binomial-based distribution of p̂ is well-approximated by the normal distribution, enabling us to use z-scores for probability calculations.
Z-SCORE FOR A SAMPLE PROPORTION
z = (p̂ − p) / √( p(1 − p) / n )
This standardization converts a p̂ value into a z-score, measuring how many standard deviations p̂ lies from the center p. This z-score is essential for computing probabilities and performing hypothesis tests about population proportions.
⚠️ Conditions Checklist for AP Exams
On the AP Statistics exam, you must verify three conditions before applying the normal model for p̂: (1) Random — the data come from a random sample or randomized experiment; (2) Independence (10% Condition) — when sampling without replacement, n < 10% of the population; (3) Large Counts — np ≥ 10 and n(1 − p) ≥ 10. Failing to state and verify these conditions is one of the most common point deductions on free-response questions.

How Sample Size and Population Proportion Affect the Distribution

The shape and spread of the sampling distribution of p̂ depend on two quantities: the sample size n and the population proportion p. Understanding their effects is critical both for designing studies and for reasoning about results on the AP exam. The diagram below shows how the sampling distribution changes as n increases, holding p constant at 0.30.

Three normal curves for p = 0.30 at sample sizes n = 25 (red, σ ≈ 0.092), n = 100 (amber, σ ≈ 0.046), and n = 400 (cyan, σ ≈ 0.023). As n increases, the distribution narrows dramatically—quadrupling n halves the standard deviation.

The visual makes a crucial relationship concrete: since σ = √(p(1 − p)/n), the standard deviation is inversely proportional to the square root of n. This means quadrupling the sample size cuts the standard deviation in half. Going from n = 25 to n = 100 (a factor of 4) reduces σ from 0.092 to 0.046—exactly half. This square-root relationship has practical implications for survey design: achieving twice the precision requires four times the sample size, which means four times the cost.

Sampling distribution characteristics for p = 0.30 at various sample sizes
Sample Size (n)σ_p̂ (when p = 0.30)Large Counts Met?Approx. 95% Range for p̂
100.145No (np = 3)Normal model not appropriate
500.065Yes (np = 15, n(1−p) = 35)(0.17, 0.43)
2000.032Yes (np = 60, n(1−p) = 140)(0.24, 0.36)
10000.014Yes (np = 300, n(1−p) = 700)(0.27, 0.33)

The value of p also affects the standard deviation and the validity of the normal approximation. The product p(1 − p) is maximized when p = 0.50 and decreases symmetrically as p approaches 0 or 1. When p is extreme (near 0 or 1), the sampling distribution is more skewed and requires a larger n to satisfy the Large Counts Condition. For instance, with p = 0.05, you would need n ≥ 200 to reach np = 10, whereas with p = 0.50, even n = 20 suffices.

Worked Example: Finding a Probability for p̂

A large university reports that 65% of its students graduate in four years. A researcher takes a simple random sample of 150 students. What is the probability that the sample proportion of four-year graduates exceeds 0.70?

Computing P(p̂ > 0.70) Using the Normal Model
1
Step 1 — Identify Given ValuesPopulation proportion: p = 0.65. Sample size: n = 150. We want P(p̂ > 0.70).
p = 0.65, n = 150, target p̂ = 0.70
2
Step 2 — Verify ConditionsRandom: The problem states the sample is a simple random sample. ✓ Independence (10% Condition): A large university has far more than 1,500 students, so 150 < 10% of the population. ✓ Large Counts: np = 150 × 0.65 = 97.5 ≥ 10 ✓ and n(1 − p) = 150 × 0.35 = 52.5 ≥ 10 ✓. All conditions are satisfied.
All three conditions met — normal model is appropriate
3
Step 3 — Compute Mean and Standard DeviationMean: μ = p = 0.65. Standard deviation: σ = √(0.65 × 0.35 / 150) = √(0.2275 / 150) = √(0.001517) ≈ 0.03894.
μ_p̂ = 0.65, σ_p̂ ≈ 0.0389
4
Step 4 — Compute the z-Scorez = (p̂ − p) / σ = (0.70 − 0.65) / 0.03894 = 0.05 / 0.03894 ≈ 1.284.
z ≈ 1.28
5
Step 5 — Find the ProbabilityUsing the standard normal table or calculator: P(Z > 1.28) = 1 − P(Z ≤ 1.28) = 1 − 0.8997 ≈ 0.1003. On a TI-84, you could compute normalcdf(0.70, 1E99, 0.65, 0.03894) ≈ 0.0994.
P(p̂ > 0.70) ≈ 0.10, or about 10%
6
Step 6 — Interpret in ContextIf the true four-year graduation rate is 65%, there is approximately a 10% chance that a random sample of 150 students would yield a sample proportion of four-year graduates exceeding 0.70. This result is somewhat unusual but not extraordinarily rare—it would happen about 1 in 10 times by chance alone.

Common Errors & Misconceptions

Even students with a solid grasp of the formulas frequently lose points on the AP exam due to subtle but important errors. The table below catalogues the most common mistakes and their corrections, drawing on patterns observed in released AP scoring guidelines.

Common errors and misconceptions about the sampling distribution of p̂
Common ErrorWhy It's WrongCorrect Approach
Using p̂ (from sample data) in the standard deviation formula when p is knownThe standard deviation σ_p̂ requires the true population proportion p. Substituting p̂ yields the standard error, which is appropriate for confidence intervals but not when the population parameter is known (e.g., hypothesis testing).Use σ_p̂ = √(p(1−p)/n) when p is given. Use SE = √(p̂(1−p̂)/n) only when estimating from data.
Confusing the distribution of X with the distribution of p̂X ~ Binomial(n, p) counts successes; p̂ = X/n is a proportion. Their means and standard deviations differ by a factor of n.For p̂: mean = p, SD = √(p(1−p)/n). For X: mean = np, SD = √(np(1−p)). Be clear about which you are modeling.
Forgetting to check or state the conditionsApplying the normal model without verifying the Random, 10%, and Large Counts conditions loses points on FRQs. The rubric typically dedicates 1–2 points to conditions alone.Always state all three conditions with context-specific verification: name the condition, show the numerical check, and state whether it is satisfied.
Claiming the sampling distribution is always normalWhen np or n(1−p) is less than 10, the distribution of p̂ is noticeably skewed and the normal model provides poor approximations, especially in the tails.State that the distribution is approximately normal only when the Large Counts Condition is met. For small samples or extreme p, use the exact binomial distribution.
Believing larger samples change the population distributionIncreasing n does not alter the population. It makes the sampling distribution of the statistic narrower and more normal, but the underlying population remains unchanged.Distinguish clearly between the population distribution (fixed) and the sampling distribution of p̂ (depends on n). Larger n → narrower sampling distribution, not a different population.
KEY TAKEAWAY
Think of the difference between σ and SE like the distinction in engineering between a theoretical blueprint and an as-built measurement. The standard deviation σ_p̂ is the blueprint—it uses the known parameter p to describe ideal behavior. The standard error SE is the as-built version—it plugs in p̂ because p is unknown. On the AP exam, use σ for hypothesis tests (where p is specified by H₀) and SE for confidence intervals (where p must be estimated from the sample).

Connection to Inference: Confidence Intervals & Hypothesis Tests

The sampling distribution of p̂ is not merely an abstract concept—it is the engine that powers all inference about proportions on the AP Statistics exam. Both confidence intervals and hypothesis tests for a single proportion rely directly on the normal model for p̂ that we have developed. Understanding how the sampling distribution connects to these two inferential procedures is essential for performing well in Units 6 and 7 of the AP curriculum.

Comparison of how the sampling distribution of p̂ is used in confidence intervals vs. hypothesis tests
FeatureConfidence Interval for pHypothesis Test for p
GoalEstimate plausible values for the unknown pAssess evidence against a claimed value p₀
Formulap̂ ± z* × √(p̂(1−p̂)/n)z = (p̂ − p₀) / √(p₀(1−p₀)/n)
Which p in the SD?p̂ (standard error), because p is unknownp₀ (standard deviation), because H₀ specifies p
Large Counts Checknp̂ ≥ 10 and n(1−p̂) ≥ 10np₀ ≥ 10 and n(1−p₀) ≥ 10
Sampling dist. usedDistribution of p̂ centered at the true (unknown) pDistribution of p̂ centered at p₀ (assuming H₀ is true)

Looking forward, the same conceptual framework extends to two-proportion inference (comparing p₁ − p₂), where the sampling distribution of p̂₁ − p̂₂ is approximately normal under analogous conditions. Beyond proportions, the idea of a sampling distribution underlies inference for means (using the t-distribution), regression slopes, and chi-square tests. Mastering the single-proportion case thoroughly—especially the logic of checking conditions and computing standard deviations—provides a template that transfers directly to every other inferential procedure on the AP exam.

Practice Problems

1
A population has proportion p = 0.50. Random samples of size n = 100 are drawn repeatedly. Which of the following best describes what happens to the sampling distribution of p̂ if the sample size is increased to n = 400?
2
In a large city, 72% of residents have a library card. A researcher takes a simple random sample of 200 residents. What is the standard deviation of the sampling distribution of p̂?
3
A manufacturer knows that 8% of its products are defective. An inspector selects a random sample of 130 products. What is the approximate probability that the sample proportion of defective products is less than 0.05?
PROBLEM 4APPLIED
A political polling firm wants to estimate the proportion of voters in a state who support a ballot measure. Previous surveys suggest the true proportion is approximately p = 0.55. The firm plans to take a simple random sample and wants the probability to be at least 0.95 that the sample proportion p̂ falls within 0.03 of the true proportion. (a) State the three conditions required to use the normal model for the sampling distribution of p̂ and verify the 10% and Large Counts conditions assuming the state has over 5 million voters and n = 1,000. (b) Determine the minimum sample size needed so that P(|p̂ − p| ≤ 0.03) ≥ 0.95. (c) If the firm can only afford to sample 600 voters, compute the probability that p̂ falls within 0.03 of p = 0.55. (d) Explain in context what happens to the probability in part (c) if the true proportion is actually 0.50 instead of 0.55.
PROBLEM 5CRITICAL THINKING
A sociologist claims that exactly 40% of adults in a large metropolitan area volunteer for community service. To investigate this claim, a researcher takes a simple random sample of 250 adults and finds that 118 of them volunteer. (a) Define the parameter of interest and state the sampling distribution of p̂ under the sociologist's claim, verifying all necessary conditions. (b) Compute p̂ from the sample and find the probability of obtaining a sample proportion at least as extreme as the observed p̂, assuming the sociologist's claim is true. (c) Based on your answer in part (b), assess whether the sample data provide convincing evidence against the sociologist's claim at the α = 0.05 significance level. Justify your reasoning. (d) A second researcher argues that the sampling distribution should not be modeled with a normal distribution because the population of adults in the metropolitan area might not be normally distributed. Is this objection valid? Explain why or why not, referencing the theoretical basis for the sampling distribution of p̂.

Summary: Sampling Distributions for Sample Proportions

The sampling distribution of p̂ describes the probability distribution of the sample proportion across all possible random samples of size n from a population with true proportion p. Its center is μ_p̂ = p (making p̂ an unbiased estimator), and its spread is σ_p̂ = √(p(1 − p)/n), which decreases as sample size increases. The shape is approximately normal when the Large Counts Condition is satisfied (np ≥ 10 and n(1 − p) ≥ 10), allowing us to use z-scores to compute probabilities involving p̂.

Before applying the normal model on the AP exam, always verify three conditions: the sample must be random, the 10% Condition must hold (n < 10% of the population) to ensure approximate independence, and the Large Counts Condition must be met. This framework directly underpins confidence intervals and hypothesis tests for proportions—master the sampling distribution, and you hold the key to all proportion-based inference.

Varsity Tutors • AP Statistics • Sampling Distributions for Sample Proportions