AP Statistics · Lesson 18 of 30
StatsIQ · AP Statistics

Lesson 18: Probability with Sampling Distributions

Unit 2 · Phase 3 · Statistical Practice:** 3 — Analyze Data
Topics:** Deciding *which* sampling distribution applies — a sample proportion p̂ or a sample mean x̄ — from the wording of a problem; restating the center, spread, and shape (with conditions) for each; computing probabilities about a statistic with z-scores and `normalcdf`; and the classic trap of "probability about ONE individual" (population σ) versus "probability about a SAMPLE statistic" (the sampling-distribution σ). Mixed practice across both p̂ and x̄.
Calculator:** TI-84 `normalcdf` with the correct sampling-distribution parameters (μ_p̂, σ_p̂) or (μ_x̄, σ_x̄).
Objectives:
  • Read a problem and decide whether it is about a proportion (p̂) or a mean (x̄), and whether it asks about an individual or a sample statistic.
  • For the chosen statistic, restate its center, spread, and shape justification, checking the right conditions before trusting them.
  • Compute the probability with a correct z-score and `normalcdf` call, and tell the individual case apart from the sample-statistic case.

(a) Warm-Up

Three lessons, three pieces of one machine. In Lesson 15 you learned the sampling distribution of a proportion p̂. In Lesson 16 you learned the sampling distribution of a mean x̄. In Lesson 17 you saw why these distributions are unbiased and how sample size sharpens them. This lesson bolts the pieces together.

Here's the scene the AP exam keeps setting. A problem appears. It does not announce "this is a proportion question" or "use σ/√n." You have to read the wording, decide which statistic is in play, and pick the matching formulas — all before you touch the calculator. Then comes the sneakiest fork of all: is the question about one individual (a single car, one customer, a lone battery) or about a sample statistic (the average of 40 cars, the proportion in a sample of 200)? Those use different standard deviations, and confusing them is one of the most common ways students lose points on this exact topic.

By the end of this lesson you'll have a two-question decision guide that sorts any of these problems in about ten seconds. Let's build it.


(b) Core Concept

The two-question decision guide

Before any arithmetic, ask two questions in order.

Question 1 — Proportion or mean?

Is the variable categorical (each individual is a yes/no, success/failure, defective/not) → you're working with a proportion p̂.

Is the variable quantitative (each individual has a number — weight, time, score) → you're working with a mean x̄.

Question 2 — Individual or sample statistic?

Does the question ask about one randomly chosen individual → use the population σ (no √n, no sampling distribution).

Does it ask about a statistic computed from a sample of size n (an average, a sample proportion) → use the sampling-distribution standard deviation.

Question 1 tells you which formulas to grab. Question 2 tells you which standard deviation goes in the z-score. Get both right and the rest is mechanical.

The full reference table

Everything you need from L15–L17 in one place. Memorize the structure, not just the entries.

Proportion p̂Mean x̄
Whencategorical variablequantitative variable
Centerμ_p̂ = pμ_x̄ = μ
Spread (statistic)σ_p̂ = √(p(1−p)/n)σ_x̄ = σ/√n
Shape conditionLarge Counts: np ≥ 10 and n(1−p) ≥ 10population Normal (any n) OR CLT (n ≥ 30)
Independence10% condition: n ≤ 0.10N10% condition: n ≤ 0.10N

Both columns share the 10% condition — it's the price of sampling without replacement, and it justifies the spread formula in both cases. What differs is the shape rule: for p̂ it's about counts (np and n(1−p)); for x̄ it's about sample size and population shape. And note the asymmetry: a mean has a "population was already Normal" shortcut; a proportion never does (categorical data isn't Normal).

The individual-vs-statistic fork, made explicit

This is the heart of the lesson, so let's say it slowly. Suppose individual values have population mean μ and population standard deviation σ.

z = (x − μ) / σ

z = (x̄ − μ) / (σ/√n)

Same μ in the center, but the second denominator is smaller (divided by √n), so a sample mean has to travel fewer standard deviations to reach the same value. That makes the probabilities for a sample mean far more extreme. A value that's perfectly ordinary for one individual can be wildly unusual for an average of 40. Read the question stem like a hawk: "a randomly selected car" is an individual; "the mean of 40 cars" is a statistic.

Worked probability #1 — a proportion (p̂)

Problem. A manufacturer claims 40% of customers who try a free sample go on to buy the product, so p = 0.40. A marketer surveys an SRS of n = 200 customers who tried the sample. What is the probability that fewer than 35% of the sample buy, P(p̂ < 0.35)?

Decision guide. "Fewer than 35% of the sample buy" — buy/don't buy is categorical, and we're asked about a sample proportion. → proportion p̂, sample statistic.

Step 1 — Conditions.

Step 2 — Center and spread.

μ_p̂ = p = 0.40
σ_p̂ = √( p(1−p)/n ) = √( (0.40)(0.60)/200 ) = √( 0.24/200 ) = √0.0012 = 0.034641

Step 3 — z-score.

z = (p̂ − μ_p̂) / σ_p̂ = (0.35 − 0.40) / 0.034641 = −0.05 / 0.034641 = −1.44

Step 4 — Probability. Lower-tail area below z = −1.44.

TI-84: normalcdf(lower: −1E99, upper: 0.35, μ: 0.40, σ: 0.034641)
Output: 0.0745
(Equivalently normalcdf(−1E99, −1.44, 0, 1) ≈ 0.0749 — small rounding difference from rounding z.)

Interpretation. About a 7.5% chance a random sample of 200 customers has fewer than 35% buyers. Uncommon but not shocking.

Worked probability #2 — a mean (x̄)

Problem. A coffee shop's espresso shots have population mean weight μ = 64 grams with σ = 8 grams, and the individual weights are Normally distributed. A barista pulls a random sample of n = 36 shots. What is the probability the sample mean weight exceeds 66 grams, P(x̄ > 66)?

Decision guide. Weight is quantitative, and we want the average of 36 shots. → mean x̄, sample statistic.

Step 1 — Center. μ_x̄ = μ = 64 g.

Step 2 — Spread. σ_x̄ = σ/√n = 8/√36 = 8/6 = 1.3333 g.

(10% condition: 36 shots is well under 10% of all shots the shop pulls, so σ/√n is valid.)

Step 3 — Shape. The population is Normal, so x̄ is exactly Normal for any n — no CLT needed.

Step 4 — z-score.

z = (x̄ − μ_x̄) / σ_x̄ = (66 − 64) / 1.3333 = 2 / 1.3333 = 1.50

Step 5 — Probability. Upper-tail area above z = 1.50.

TI-84: normalcdf(lower: 66, upper: 1E99, μ: 64, σ: 1.3333)
Output: 0.0668

Interpretation. About a 6.7% chance the mean of 36 shots tops 66 grams.

Hold that thought — the individual contrast

Same espresso context, but now: what is the probability one randomly chosen shot weighs more than 66 grams? That's an individual, so use σ = 8, not σ/√n:

z = (66 − 64) / 8 = 0.25  →  P(x > 66) = normalcdf(66, 1E99, 64, 8) = 0.4013

Look at the gap: 40.1% for one shot, but only 6.7% for the mean of 36. A single shot over 66 g is routine; an average of 36 over 66 g is rare, because averaging squeezes the spread to σ/√n. Same number, same center — different question, different σ, wildly different answer. That contrast is exactly what the AP exam is testing.


(c) Worked Examples

Example 1 (easy) — a proportion

A polling firm believes 25% of teens use a certain app daily, p = 0.25. They survey an SRS of n = 120 teens. Find P(p̂ > 0.30).

Decision guide. Uses-app/doesn't is categorical; we want a sample proportion. → p̂.

Solution.

TI-84: normalcdf(0.30, 1E99, 0.25, 0.039528) = 0.103.

Interpretation. About a 10.3% chance more than 30% of 120 teens use the app daily.

Example 2 (medium) — a mean with a skewed population

Time spent on a checkout page is right-skewed with population mean μ = 500 seconds and σ = 100 seconds. A site samples n = 50 sessions. Find P(480 < x̄ < 520).

Decision guide. Time is quantitative; we want the average of 50. → x̄.

Solution.

TI-84: normalcdf(480, 520, 500, 14.1421) = 0.8427.

Interpretation. About 84% of samples of 50 sessions have a mean within 20 seconds of 500.

Example 3 (AP-style) — individual vs. sample mean on one context

Resting heart rates for a population of adults are Normal with μ = 70 bpm and σ = 12 bpm.

(a) Find the probability one randomly selected adult has a resting heart rate above 74 bpm.

(b) Find the probability the mean of a random sample of n = 36 adults is above 74 bpm.

(c) Explain why the two answers differ so much.

Solution.

(a) Individual → use σ = 12. z = (74 − 70)/12 = 0.33. P(x > 74) = normalcdf(74, 1E99, 70, 12) = 0.3694. About 36.9%.

(b) Sample mean → use σ_x̄ = 12/√36 = 2. The population is Normal, so x̄ is Normal for any n. z = (74 − 70)/2 = 2.00. P(x̄ > 74) = normalcdf(74, 1E99, 70, 2) = 0.0228. About 2.3%.

(c) The center is the same (70 bpm), but the standard deviation collapses from σ = 12 for one person to σ_x̄ = 2 for an average of 36. The same value, 74, sits only 0.33 SD above the mean for an individual but a full 2.00 SD above for the sample mean. Averaging cancels out high and low values, so sample means cluster tightly around μ — a mean of 36 people above 74 is genuinely unusual, while one person above 74 is common.

Example 4 (AP-style) — pick the distribution from the wording

A school says 18% of its students walk to school, p = 0.18. Separately, the time students take to get to school is right-skewed with μ = 22 minutes, σ = 9 minutes. For each part, name the sampling distribution and find the probability.

(a) In an SRS of n = 250 students, find P(p̂ > 0.18 + 0.03) = P(p̂ > 0.21).

(b) In an SRS of n = 81 students, find P(x̄ < 21) for the commute time.

Solution.

(a) "Walk / don't walk" is categorical → proportion p̂. 10% condition ✓ (school ≫ 2500... if the school is large; assume so). Large Counts: np = 250(0.18) = 45 ≥ 10, n(1−p) = 250(0.82) = 205 ≥ 10 ✓. σ_p̂ = √(0.18·0.82/250) = √(0.0005904) = 0.024298. z = (0.21 − 0.18)/0.024298 = 1.23. P(p̂ > 0.21) = normalcdf(0.21, 1E99, 0.18, 0.024298) = 0.108.

(b) Time is quantitative → mean x̄. Skewed population but n = 81 ≥ 30, so CLT → approximately Normal. σ_x̄ = 9/√81 = 9/9 = 1. z = (21 − 22)/1 = −1.00. P(x̄ < 21) = normalcdf(−1E99, 21, 22, 1) = 0.1587.

Takeaway. Identical lesson, two different machines — the only thing that changed was reading "walk" (categorical) versus "minutes" (quantitative).


(d) Common Mistakes

1. Using population σ instead of σ/√n for a sample mean. The marquee error. "The mean of n = 36 cars" is a statistic — divide by √n. Using the raw σ makes your spread far too big, your z far too small, and your probability badly off. (In Example 3, this turns a 2.3% answer into a 36.9% answer.) Always ask Question 2: individual or statistic?

2. Skipping the shape justification. You must state why the statistic is approximately Normal: for p̂ cite Large Counts (np ≥ 10, n(1−p) ≥ 10); for x̄ cite either population Normal (any n) or the CLT (n ≥ 30). Perfect arithmetic with no shape justification still loses the shape point.

3. Mixing up p̂ and x̄ procedures. Plugging √(p(1−p)/n) into a mean problem, or σ/√n into a proportion problem, is a guaranteed wrong answer. Run Question 1 first: categorical → p̂ formulas; quantitative → x̄ formulas. They are not interchangeable.

4. Using the CLT to rescue a small skewed-population mean. The CLT needs large n (n ≥ 30). If the population is skewed and n = 12, you cannot model x̄ as Normal — the right response is "this calculation isn't justified," not a number.

5. Forgetting the 10% condition. It justifies the spread formula in both the p̂ and x̄ cases. Omitting it is an easy lost point on the FRQ even when every number is right.


(e) Practice Problems

Question 1
A problem asks for the probability that the proportion of defective items in a sample of 300 exceeds 0.05. Which standard deviation belongs in the z-score?
Question 2
A problem asks for the probability that one randomly chosen battery lasts more than 20 hours. Which standard deviation belongs in the z-score?
Question 3
Which problem is about a mean, not a proportion?
Question 4
A population is right-skewed with μ = 50, σ = 12. For the sample mean of n = 9, you should:
Question 5
For a sample proportion with p = 0.20 and n = 100, the Large Counts condition checks:
Question 6
A factory's defect rate is p = 0.30. In an SRS of n = 100 items, find P(p̂ > 0.37).
Question 7
Package weights are Normal with μ = 12 kg and σ = 2.5 kg. For a sample of n = 40, find P(x̄ < 11.5).

(in context) A streaming service finds that p = 0.15 of trials convert to paid subscriptions. In an SRS of n = 250 trials, find P(p̂ > 0.18) and state your shape justification.

(in context) Daily steps for a fitness-app population are right-skewed with μ = 3.2 (thousand) and σ = 1.1 (thousand). For a random sample of n = 64 users, find P(x̄ > 3.4) and justify the shape.

True or false: For the same context, the probability that one individual exceeds a value is always less than the probability that the sample mean of n individuals exceeds that value. Explain.

(in context) Test scores in a population are Normal with μ = 70 and σ = 12.

(a) Find P(one student > 74).

(b) Find P(x̄ > 74) for a sample of n = 36.

(c) Why do the answers differ?

Question 12
A coin is suspected fair, p = 0.50. In n = 64 flips, find P(0.45 < p̂ < 0.55).

Bottle fills are Normal with μ = 2.0 L and σ = 0.3 L. For a sample of n = 25 bottles, find the value c such that P(x̄ < c) = 0.90. (Hint: z = 1.282.)

Question 14
Which condition justifies the spread formula (σ_p̂ or σ_x̄) in both the proportion and mean cases?
Question 15
A student computes a probability about a sample mean of n = 49 using σ instead of σ/√n. The resulting probability for an upper tail will be:

(f) FRQ Practice (10 points)

Statistical Practice: 3 — Analyze Data

An airline states that the weight of a checked bag has a population mean of μ = 23 kilograms with population standard deviation σ = 5 kilograms. The distribution of individual bag weights is strongly right-skewed (most bags are light, a few are very heavy). For one flight, a gate agent weighs a random sample of n = 64 checked bags.

(a) The airline first asks about a single bag: explain why the agent cannot reliably compute the probability that one randomly selected bag weighs more than 24 kg using a Normal model, but can compute a probability about the sample mean of 64 bags. (2 points)

(b) Describe the shape, center, and spread of the sampling distribution of the sample mean bag weight x̄. Justify the shape and verify any condition needed for the spread. (4 points)

(c) Find the probability that the sample mean weight exceeds 24 kilograms, P(x̄ > 24). Show your work. (2 points)

(d) Interpret your probability from part (c) in context. (2 points)


Model Response

(a) A single bag's weight follows the population distribution, which is strongly right-skewed, not Normal. So we cannot use a Normal model to find the probability for one bag. The sample mean of 64 bags is different: because n = 64 ≥ 30, the Central Limit Theorem makes the sampling distribution of x̄ approximately Normal even though the population is skewed. We can model x̄ as Normal, so a probability about the mean is justified.

(b)

(c) Standardize using μ_x̄ = 23 and σ_x̄ = 0.625:

z = (24 − 23) / 0.625 = 1 / 0.625 = 1.60
P(x̄ > 24) = P(z > 1.60) ≈ 0.0548

TI-84: normalcdf(24, 1E99, 23, 0.625) = 0.0548.

(d) If the airline repeatedly took random samples of 64 checked bags, about 5.5% of those samples would have a mean weight greater than 24 kg. A sample mean above 24 kg is therefore somewhat unusual but not extreme; it is broadly consistent with the airline's claimed mean of 23 kg.


Scoring Rubric (10 points)

Part (a) — 2 points

Part (b) — 4 points

Part (c) — 2 points

Part (d) — 2 points

Where students lose points:


🔑 Answer Key

1. A. A sample proportion uses σ_p̂ = √(p(1−p)/n). (B) is the mean's spread; (C) is for one individual; (D) forgets the square root.

2. B. "One randomly chosen battery" is an individual, so use the population σ — no √n. (A)/(D) are sample-mean spreads; (C) is a proportion formula, and battery life is quantitative anyway.

3. B. "Average commute time" is a quantitative mean. (A), (C), (D) are all fractions/percents/proportions of a categorical yes-no variable.

4. B. Skewed population with n = 9 (< 30): the CLT does not apply and the population isn't Normal, so x̄ cannot be modeled as Normal. (A) misapplies the CLT to small n; (C) is a proportion formula; (D) sample shape never justifies the population shape.

5. A. Large Counts checks np ≥ 10 and n(1−p) ≥ 10: here 20 and 80, both ✓. (B) is the 10% (independence) condition; (C) is a spread formula; (D) is the mean's shape rule, not the proportion's.

6. A (0.0633). σ_p̂ = √(0.30·0.70/100) = √0.0021 = 0.045826; z = (0.37 − 0.30)/0.045826 = 1.53; P(p̂ > 0.37) = P(z > 1.53) ≈ 0.0633. normalcdf(0.37, 1E99, 0.30, 0.045826) = 0.0633. (B) 0.1587 uses z = 1; (C) is near center (sign/setup error); (D) 0.0228 uses z = 2.

7. B (0.1030). Population Normal → x̄ Normal for any n. σ_x̄ = 2.5/√40 = 0.395285; z = (11.5 − 12)/0.395285 = −1.26; P(x̄ < 11.5) = P(z < −1.26) ≈ 0.1030. normalcdf(−1E99, 11.5, 12, 0.395285) = 0.1030. (A) 0.4207 is the individual trap — using σ = 2.5 gives z = −0.20; (C) 0.3085 uses z = −0.5; (D) 0.0228 uses z = −2.

8. Categorical (convert/not) → proportion p̂. Shape: Large Counts np = 250(0.15) = 37.5 ≥ 10 and n(1−p) = 250(0.85) = 212.5 ≥ 10 ✓, so approximately Normal (10% condition also holds). σ_p̂ = √(0.15·0.85/250) = √(0.00051) = 0.022583; z = (0.18 − 0.15)/0.022583 = 1.33; P(p̂ > 0.18) = P(z > 1.33) ≈ 0.092. normalcdf(0.18, 1E99, 0.15, 0.022583) = 0.0920. (Accept ≈ 0.091–0.093.)

9. Quantitative → mean x̄. Shape: population right-skewed, but n = 64 ≥ 30, so by the CLT x̄ is approximately Normal (10% condition holds). σ_x̄ = 1.1/√64 = 1.1/8 = 0.1375; z = (3.4 − 3.2)/0.1375 = 1.45; P(x̄ > 3.4) = P(z > 1.45) ≈ 0.0729. normalcdf(3.4, 1E99, 3.2, 0.1375) = 0.0729. (Common trap: using σ = 1.1 gives z = 0.18 and ≈ 0.428 — wrong.)

10. False. It is the opposite. Because σ_x̄ = σ/√n < σ, the sample mean's distribution is narrower than the population's, so the same upper value sits more standard deviations above the center for the mean than for an individual. Thus P(x̄ > value) is smaller (more extreme) than P(individual > value) when the value is above μ. (See Problem 11.)

11.

(a) Individual → σ = 12. z = (74 − 70)/12 = 0.33; P(x > 74) = normalcdf(74, 1E99, 70, 12) ≈ 0.3694. About 36.9%.

(b) Sample mean, population Normal → σ_x̄ = 12/√36 = 2. z = (74 − 70)/2 = 2.00; P(x̄ > 74) = normalcdf(74, 1E99, 70, 2) ≈ 0.0228. About 2.3%.

(c) The center (70) is identical, but the standard deviation shrinks from σ = 12 for one student to σ_x̄ = 2 for the mean of 36. The value 74 is only 0.33 SD above the mean for an individual but 2.00 SD above for the sample mean, so the sample-mean probability is far smaller. Averaging cancels extremes, pulling sample means tightly around μ.

12. B (0.5763). Categorical (heads/tails) → p̂. σ_p̂ = √(0.50·0.50/64) = √(0.003906) = 0.0625; z = (0.55 − 0.50)/0.0625 = 0.80 and z = (0.45 − 0.50)/0.0625 = −0.80; P(−0.80 < z < 0.80) ≈ 0.5763. normalcdf(0.45, 0.55, 0.50, 0.0625) = 0.5763. (C) 0.6826 mistakes ±0.80 SD for ±1 SD; (D) 0.9544 is ±2 SD; (A) 0.3829 is one-sided-ish setup error.

13. Population Normal → x̄ Normal. σ_x̄ = 0.3/√25 = 0.3/5 = 0.06. For the 90th percentile, z = 1.282, so c = μ_x̄ + 1.282·σ_x̄ = 2.0 + 1.282(0.06) = 2.0 + 0.0769 = 2.077 L. So P(x̄ < 2.077) ≈ 0.90. (TI-84 check: invNorm(0.90, 2.0, 0.06) = 2.0769.)

14. C. The 10% condition (n ≤ 0.10N) justifies the spread formula in both cases by making the without-replacement observations approximately independent. (A) Large Counts is the proportion's shape rule; (B) the CLT is the mean's shape rule; (D) population Normality is only a mean-shape justification.

15. B (too large). For an upper-tail probability above μ, using σ (instead of the smaller σ/√n) makes the z-score too small, so the upper-tail area is too large. The correct, smaller σ/√n would push z higher and the probability lower. (This is the individual-vs-statistic trap producing an overstated probability.)

StatsIQ · Lesson 18 of 30 · Unit 2: Probability, Random Variables, and Probability Distributions · Phase 3: Sampling Distributions

This lesson is aligned to the new 2026–27 AP Statistics Course and Exam Description (first exam May 2027). AP® is a trademark registered by the College Board, which is not affiliated with and does not endorse this product.

All numerical results in this lesson (σ_p̂ and σ_x̄ values, z-scores, and normalcdf/Normal-table probabilities) have been independently recomputed and reviewed for statistical accuracy by a retired actuary.

← Lesson 17
Lesson 19 →
Score: 0/0 correct