AP Statistics · The Calculator-in-Hand Workbook

Alpha, beta, p-value —
let's finally meet them as real numbers.

Every unit below starts with dead-simple numbers, walks through the formula by hand, then does the exact same calculation on a TI-84. At the end, the easily-confused terms get sorted into one table, and a 10-question quiz checks whether it stuck. Goal: a 5 on the exam.

UNIT 1 · 1.6, 1.9

Normal Distribution & z-score

A z-score tells you how many standard deviations a value is from the mean: z = (x − mean) / standard deviation. Once you have z, you can get a probability instantly from the standard normal table or the calculator's normalcdf.

Simple data Five students' test scores: 70, 75, 80, 85, 90
By hand
Mean x̄ = (70+75+80+85+90) / 5 = 80

Sum of squared deviations = 100+25+0+25+100 = 250
Sample SD Sx = √(250 / (5−1)) = √62.5 ≈ 7.906

For x = 90: z = (90 − 80) / 7.906 ≈ 1.26
P(X > 90) = P(Z > 1.26) ≈ 0.103
① STAT → EDIT → enter 70,75,80,85,90 into L1
② STAT → CALC → 1:1-Var Stats → L1 → ENTER
③ 2ND → VARS(DISTR) → 2:normalcdf(
normalcdf(90, 1E99, 80, 7.906)
x̄ = 80 Sx = 7.9057 normalcdf(...) = 0.1029
Try it yourself — what's the z-score for a score of 70?
Key idea: the sign of z matters as much as its size. A negative z means below the mean; a large absolute value means unusually far from it either way.
UNIT 4 · 4.10, 4.11

Binomial Distribution

Use the binomial model when trials are independent, each outcome is success/failure, and the success probability p is the same every trial. The probability of exactly x successes in n trials is P(X=x) = C(n,x)·pˣ·(1−p)ⁿ⁻ˣ.

Simple data Flip a fair coin 10 times (p = 0.5). What's the probability of getting exactly 6 heads?
By hand
C(10,6) = 210
P(X=6) = 210 × 0.5⁶ × 0.5⁴ = 210 × 0.5¹⁰ = 210 × 0.0009766
P(X=6) ≈ 0.2051 (about 20.5%)

Mean μ = np = 10 × 0.5 = 5
SD σ = √(np(1−p)) = √2.5 ≈ 1.581
2ND → VARS(DISTR) → A:binompdf(
binompdf(10, 0.5, 6)
Need P(X≤6) instead? Use binomcdf(10,0.5,6)
binompdf(10,0.5,6) = 0.2051
Try it yourself — for B(n=10, p=0.5), what's P(X=6)?
Key idea: memorize μ=np and σ=√(np(1−p)) — they connect directly to the sample-proportion formulas in Unit 5/6.
UNIT 5 · 5.3, 5.7

Sampling Distributions & the Central Limit Theorem

The distribution of all possible sample means x̄ is called the sampling distribution. The Central Limit Theorem says that as sample size n grows, this distribution gets closer to normal, and its standard deviation (the standard error) shrinks toward σ/√n — bigger samples give more stable sample means.

Simple data Reuse the Unit 1 population: μ = 80, σ = 7.906. Now draw repeated samples of n=25. What's the probability the sample mean exceeds 82?
By hand
Standard error SE = σ/√n = 7.906 / √25 = 7.906 / 5 ≈ 1.581
z = (82 − 80) / 1.581 ≈ 1.26
P(x̄ > 82) = P(Z > 1.26) ≈ 0.103
2ND → VARS(DISTR) → 2:normalcdf(
normalcdf(82, 1E99, 80, 1.581)
Result = 0.1029
Try it yourself — what's the standard error when n=25?
Key idea: the z-value came out identical to Unit 1 — not a coincidence. n=25 shrank σ by exactly √25=5, so the distance to 82 stayed proportionally the same. That's the CLT shrinking the standard error in action.
UNIT 6 · 6.2–6.7

Proportion CI & Hypothesis Tests — p-value, α, β

A confidence interval estimates a plausible range for a parameter; a hypothesis test turns "could this just be chance?" into a probability, the p-value. Significance level α is the threshold you set before the test (usually 0.05); if p-value < α, you reject the null.

Simple data — confidence interval Out of a sample of 100, 60 prefer the product (p̂ = 0.6). What's the 95% confidence interval for the population proportion?
By hand
SE = √(p̂(1−p̂)/n) = √(0.6×0.4/100) = √0.0024 ≈ 0.0490
Margin of error ME = 1.96 × 0.0490 ≈ 0.0960
95% CI = 0.6 ± 0.096 = (0.504, 0.696)
STAT → TESTS → A:1-PropZInt
x=60, n=100, C-Level=.95
(.50399, .69601) p̂ = 0.6
Simple data — hypothesis test Same sample (60/100). Test H₀: p = 0.5 vs Hₐ: p > 0.5 at α=0.05.
By hand
SE₀ = √(p₀(1−p₀)/n) = √(0.5×0.5/100) = √0.0025 = 0.05
z = (0.6 − 0.5) / 0.05 = 2.00
p-value = P(Z > 2.00) ≈ 0.0228
Decision: 0.0228 < 0.05 → reject H₀ (significantly greater than 0.5)
STAT → TESTS → 5:1-PropZTest
p₀=.5, x=60, n=100, prop>p₀
z = 2.00 p = 0.0228
Try it yourself — what's the test statistic z above?
α vs β, once and for all:
• α (Type I error probability) = risk of wrongly rejecting a true H₀. You choose it before testing.
• β (Type II error probability) = risk of failing to reject a false H₀. Larger samples shrink β.
• Power = 1 − β = the probability of correctly catching a real effect.
UNIT 7 · 7.4, 7.5

t-Test for a Mean

When you don't know the population SD σ and estimate it with the sample SD s instead, use the t-distribution (df = n−1) in place of z. The t-distribution has heavier tails than z, so a given statistic produces a slightly larger p-value under t than it would under z.

Simple data 8 students' improvement scores: sample mean x̄=82, sample SD s=6, n=8. H₀: μ=78 vs Hₐ: μ≠78 (two-sided, α=0.05)
By hand
SE = s/√n = 6/√8 = 6/2.828 ≈ 2.121
t = (82 − 78) / 2.121 ≈ 1.886
df = n − 1 = 7
p-value (two-sided) ≈ 0.102
Decision: 0.102 > 0.05 → fail to reject H₀ (not enough evidence of a real difference)
STAT → TESTS → 2:T-Test → Stats
μ₀=78, x̄=82, Sx=6, n=8, ≠μ₀
t = 1.886 p = 0.1018 df = 7
Try it yourself — what's the test statistic t?
Key idea: the formula structure is identical to a z-test — (statistic − hypothesized value) / standard error. Only σ→s and normal→t (df=n−1) change.
UNIT 8 · 8.2, 8.3

Chi-Square Goodness of Fit Test

Measures how far observed counts of a categorical variable are from expected counts. χ² = Σ (observed−expected)² / expected. Bigger differences push χ² up and the p-value down.

Simple data A die is rolled 60 times; observed counts per face: 8, 12, 9, 11, 10, 10. If the die is fair, each face's expected count is 60/6 = 10.
By hand
χ² = (8−10)²/10 + (12−10)²/10 + (9−10)²/10 + (11−10)²/10 + 0 + 0
χ² = 0.4 + 0.4 + 0.1 + 0.1 + 0 + 0 = 1.0
df = 6 − 1 = 5
p-value ≈ 0.96 (very large) → fail to reject H₀ (the die looks fair)
L1 = observed {8,12,9,11,10,10}
L2 = expected {10,10,10,10,10,10}
STAT → TESTS → D:χ²GOF-Test
χ² = 1.00 p = 0.9626 df = 5
Try it yourself — what's the χ² statistic above?
Key idea: χ² is always ≥ 0; closer to 0 means observed matches expected well. Unlike z or t, only the right tail (large values) forms the rejection region.
UNIT 9 · 9.4, 9.5

Test for the Slope of a Regression Line

Tests whether there's a linear relationship (slope ≠ 0) between two quantitative variables. Divide the slope by its standard error to get a t-statistic, with df = n − 2 (data points minus the 2 estimated parameters: slope and intercept).

Simple data Regression on n=6 pairs; the calculator reports: slope b₁=2.5, SE of the slope SEᵦ=0.8. H₀: β₁=0 vs Hₐ: β₁≠0
By hand
t = b₁ / SEᵦ = 2.5 / 0.8 ≈ 3.125
df = n − 2 = 6 − 2 = 4
p-value (two-sided) ≈ 0.035 → reject H₀ (slope is not zero — a real relationship)
Enter raw data into L1, L2, then
STAT → TESTS → E:LinRegTTest
Xlist=L1, Ylist=L2, β & ρ ≠0
t = 3.125 p ≈ 0.035 df = 4
Try it yourself — what's the t-statistic for the slope test?
Key idea: same pattern again — (estimate − 0) / standard error. Whether it's a mean, a proportion, or a slope, this pattern cuts down how much you need to memorize.

⑧ Don't-Confuse-These Table — p-value · α · β · Type I/II Error

These are the concepts most students mix up on the AP exam. Nail them down here, once.

TermDefinitionWho sets itHow to remember it
α (significance level) The threshold you're willing to accept for a Type I error. Usually 0.05. Chosen by the researcher before the test. "The risk line I'm willing to accept"
p-value Assuming H₀ is true, the probability of getting a result as extreme or more extreme than what was observed. Calculated from the test statistic. "How surprising is my data?"
Type I Error Rejecting H₀ when it's actually true. Probability = α. "Convicting an innocent person"
Type II Error Failing to reject H₀ when it's actually false. Probability = β. "Letting the real culprit go free"
β Probability of a Type II error. Larger sample size → smaller β. Determined by sample size and effect size (not set directly). "The probability of missing it"
Power Probability of correctly rejecting H₀ when Hₐ is true. Power = 1 − β. "The strength to catch a real effect"
z-test Used when the population SD σ is known. Proportion tests are always z. "Know σ → use z"
t-test Used when σ is unknown and estimated with sample s. Mean tests are almost always t. "Don't know σ → use t (df=n−1)"
Binomial n independent trials, constant success probability p, success/failure outcomes. μ=np, σ=√(np(1−p))
Normal Distribution Continuous data forming a symmetric bell shape around the mean. Also the limiting shape from the CLT. z = (x−μ)/σ

⑨ 10-Question Practice Quiz (Multiple Choice)

Pick an answer and you'll immediately see whether it's correct, plus an explanation. When you're done, hit [Grade Quiz] to see your score.

10 questions · 1 point each 0 / 10