Learn AP Statistics by pressing the buttons yourself — TI-84

Master the concepts by
checking your own numbers

Alpha, beta, p-value, z, t, binomial, normal — the names alone are confusing. This workbook walks through each one using deliberately simple numbers you can compute by hand. Every unit follows the same path: formula → hand calculation → TI-84 keystrokes → try it yourself.

normalcdf(
-1E99,85,
70,10)
= .9332

Three rules for this workbook

1. Every dataset uses simple, easy-to-compute numbers — nothing messy.

2. Every formula is calculated by hand first, then shown as TI-84 keystrokes.

3. Each unit ends with a box where you type in your own answer and get it checked instantly.

UNIT 1 / 5z-score · Normal Distribution

Normal Distribution & z-scores

When data follows a bell-shaped (normal) distribution, a z-score tells you how many standard deviations a value is from the mean. Once you know the z-score, you can find the proportion of data above or below it using a z-table or a calculator.

Formula

z = (x − μ) / σ
P(X < x) = normalcdf(−1E99, x, μ, σ)

Example data

Test scores: mean μ = 70 Standard deviation σ = 10 Question: P(score < 85)?

By hand: z = (85 − 70) / 10 = 1.5

From the standard normal table, z = 1.5 → about 0.9332

P(X < 85) ≈ 0.9332 (93.32%)
TI-84 keystrokes
2nd VARS (DISTR) → 2:normalcdf( lower: -1E99 , upper: 85 , μ: 70 , σ: 10 ) ENTER → screen: .9331928
Hint: z = (60−70)/10 = −1.0, normalcdf(60, 1E99, 70, 10)
UNIT 4Binomial Distribution

Binomial Distribution

Find the probability that "success" happens exactly x times out of n trials. Conditions: trials must be independent, and the success probability p must stay the same every trial.

Formula

P(X = x) = C(n, x) · p^x · (1−p)^(n−x)
μ = np     σ = √(np(1−p))

Example data

Free-throw success rate p = 0.3 Trials n = 10 Question: P(exactly 3 successes)?

By hand: C(10,3) = 120, 120 × (0.3)³ × (0.7)⁷ = 120 × 0.027 × 0.0823 ≈ 0.2668

P(X = 3) ≈ 0.2668

Mean and SD: μ = 10×0.3 = 3, σ = √(10×0.3×0.7) = √2.1 ≈ 1.449

TI-84 keystrokes
2nd VARS (DISTR) → A:binompdf( n: 10 , p: 0.3 , x: 3 ) ENTER → screen: .2668279 Note: for cumulative probability ("3 or fewer"), use binomcdf(10,0.3,3)
Hint: binompdf(10, 0.3, 4)
UNIT 4Geometric Distribution

Geometric Distribution

Models "on which trial does the first success occur?" Unlike the binomial, the number of trials n is not fixed in advance.

Formula

P(X = x) = (1−p)^(x−1) · p
μ = 1 / p

Example data

Probability of a correct guess p = 0.25 Question: P(first success on trial 4)?

By hand: (0.75)³ × 0.25 = 0.4219 × 0.25 ≈ 0.1055

P(X = 4) ≈ 0.1055

Average number of trials: μ = 1/0.25 = 4 trials

TI-84 keystrokes
2nd VARS (DISTR) → D:geometpdf( p: 0.25 , x: 4 ) ENTER → screen: .1054688
Hint: geometcdf(0.25, 3)
UNIT 5Sampling Distributions · CLT

Sampling Distribution of the Mean & the Central Limit Theorem

If you repeatedly draw samples of size n from a population, the distribution of the sample means x̄ is called the "sampling distribution." When n is large enough (roughly n≥30), the distribution of x̄ becomes approximately normal regardless of the population's shape — this is the Central Limit Theorem (CLT).

Formula

μ = μ     σ = σ / √n

Example data

Population mean μ = 50 Population SD σ = 12 Sample size n = 36 Question: P(x̄ > 53)?

By hand: σ = 12/√36 = 12/6 = 2, z = (53−50)/2 = 1.5

P(x̄ > 53) ≈ 0.0668
TI-84 keystrokes
2nd VARS2:normalcdf( 53 , 1E99 , 50 , 2 ) ENTER → screen: .0668072 Note: the σ slot must use σ/√n = 2 (not 12!)
Hint: 1 − 0.0668 = ?
UNIT 6CI & Hypothesis Test for a Proportion

Confidence Interval and Hypothesis Test for a Proportion

Use the sample proportion p̂ to estimate the population proportion p (confidence interval), or to test a claim about p (hypothesis test).

Confidence interval formula

p̂ ± z* · √( p̂(1−p̂) / n )

Example data

Sample size n = 200 Successes x = 120 → p̂ = 0.6 95% confidence, z* = 1.96

By hand: SE = √(0.6×0.4/200) = √0.0012 ≈ 0.0346

0.6 ± 1.96×0.0346 = 0.6 ± 0.0679

95% CI ≈ (0.532, 0.668)
TI-84 keystrokes
STATTESTSA:1-PropZInt x: 120 , n: 200 , C-Level: .95 CALCULATE → screen: (.53189, .66811)

Hypothesis test formula

z = (p̂ − p₀) / √( p₀(1−p₀) / n )

Example data

H₀: p = 0.5  vs  H⃆: p > 0.5 n = 200, x = 120 → p̂ = 0.6 α = 0.05

By hand: SE₀ = √(0.5×0.5/200) = √0.00125 ≈ 0.03536

z = (0.6 − 0.5) / 0.03536 ≈ 2.828

p-value = P(Z > 2.828) ≈ 0.0023

p-value ≈ 0.0023 < α = 0.05 → reject H₀
TI-84 keystrokes
STATTESTS5:1-PropZTest p₀: 0.5 , x: 120 , n: 200 , prop: >p₀ CALCULATE → screen: z=2.828, p=.00234
UNIT 7CI & t-Test for a Mean

Confidence Interval and t-Test for a Mean

When you don't know the population standard deviation σ (true in most real situations), you use the sample standard deviation s instead, and use the t-distribution instead of the normal distribution. Degrees of freedom df = n − 1.

Confidence interval formula

x̄ ± t* · (s / √n)    [df = n−1]

Example data

Sample size n = 15 Sample mean x̄ = 82 Sample SD s = 6 95% CI, df=14 → t* ≈ 2.145

By hand: SE = 6/√15 ≈ 1.549, margin of error = 2.145×1.549 ≈ 3.32

95% CI ≈ (78.68, 85.32)
TI-84 keystrokes
STATTESTS8:TInterval Stats mode: x̄:82, Sx:6, n:15, C-Level:.95 CALCULATE → screen: (78.68, 85.32)

Hypothesis test formula

t = (x̄ − μ₀) / (s / √n)

Example data

H₀: μ = 80  vs  H⃆: μ > 80 n=15, x̄=82, s=6 α = 0.05

By hand: t = (82−80)/1.549 ≈ 1.291, df = 14

p-value = P(T > 1.291) ≈ 0.109

p-value ≈ 0.109 > α = 0.05 → fail to reject H₀
TI-84 keystrokes
STATTESTS2:T-Test Stats mode: μ₀:80, x̄:82, Sx:6, n:15, μ:>μ₀ CALCULATE → screen: t=1.291, p=.1088
UNIT 8Chi-Square Test

Chi-Square Goodness-of-Fit Test (χ² GOF)

Tests whether the observed counts of a categorical variable differ from the expected counts.

Formula

χ² = Σ (observed − expected)² / expected    [df = number of categories − 1]

Example data

Claim: 4 candy colors occur "equally often" (n=100, expected 25 each)

Observed: 30, 20, 25, 25 Expected: 25, 25, 25, 25 (each)

By hand: (30−25)²/25 + (20−25)²/25 + 0 + 0 = 1 + 1 + 0 + 0 = 2

df = 4 − 1 = 3, p-value = P(χ² > 2, df=3) ≈ 0.572

χ² = 2, p-value ≈ 0.572 → fail to reject H₀ (the "equal" claim stands)
TI-84 keystrokes
Enter observed 30,20,25,25 into L1 Enter expected 25,25,25,25 into L2 STATTESTSD:χ²GOF-Test Observed:L1, Expected:L2, df:3 CALCULATE → screen: χ²=2, p=.5724
UNIT 9t-Test for the Regression Slope

t-Test for the Slope of a Regression Line

Tests whether there is real evidence of a linear relationship (slope ≠ 0) between two quantitative variables.

Formula

t = b₁ / SEb1    [df = n−2]

Example data

x: 1, 2, 3, 4, 5 y: 3, 5, 4, 8, 9

By hand: slope b₁ = 1.5, SEb1 ≈ 0.379

t = 1.5 / 0.379 ≈ 3.96, df = 5−2 = 3

two-sided p-value ≈ 0.028

p-value ≈ 0.028 < α = 0.05 → evidence the slope is not 0
TI-84 keystrokes
Enter x-values into L1, y-values into L2 STATTESTSG:LinRegTTest Xlist:L1, Ylist:L2, β & ρ: ≠0 CALCULATE → screen: b=1.5, t=3.962, p=.0281
SUMMARYp-value · α · β · Error Types

The Confusing Terms, Sorted Out

The six most commonly confused terms in hypothesis testing, side by side. This is where most students lose points on the exam.

TermMeaningOne-line example
p-value Assuming H₀ is true, the probability of getting a result this extreme (or more extreme) p = 0.0023 → "if H₀ were true, data like this would be very rare"
α (significance level) The threshold you set in advance. If p-value < α, you reject H₀ Usually α = 0.05 (chosen by the researcher before testing)
β The probability of failing to reject H₀ when H₀ is actually false (probability of a Type II error) A large β means low power (1−β)
Type I error Rejecting H₀ when H₀ is actually true. Probability of this error = α Concluding "there is an effect" when there really isn't one
Type II error Failing to reject H₀ when H₀ is actually false. Probability of this error = β Concluding "not enough evidence" when there really is an effect
Power The probability of correctly rejecting H₀ when H₀ is false = 1 − β Increasing the sample size n increases power

Decision rule: p-value < α → reject H₀ (statistically significant) / p-value ≥ α → fail to reject H₀ (insufficient evidence — this does NOT "prove" H₀ is true)

QUIZ12 Multiple Choice Questions

Score-a-5 Check Quiz

Click a question to reveal the answer and explanation. For anything you miss, jump back to that unit above and review it.