AP Stats formula sheet: Every formula explained with a worked example

APMathematicssubject guides
By Emily Clark
13 min read
Emily Clark

The AP (Advanced Placement) Statistics formula sheet is a reference packet of formulas and tables you can use on both sections of the exam; from May 2027 it is available both in print and digitally in Bluebook. It has descriptive stats formulas, the two big probability rules, the sampling distributions of means and proportions, every significant test statistic and confidence interval you'll be asked to compute, plus the t, chi-square and z tables. The College Board wants you comparing formulas, not memorizing them.

That's a mixed blessing. Nothing on the sheet does the thinking for you. If you can't tell a one-sample t-interval from a two-sample t-test, or a proportion from a mean, having the formula in front of you doesn't help. This guide walks the whole sheet in the order it's printed, groups each formula by the unit it comes from, and gives you a plain-English what-it-does and when-to-use for every single one. If you'd rather practice the underlying content, Cognito's AP Statistics past papers have every recent released exam with worked solutions.

You do NOT need to memorize any formula on the sheet. You DO need to identify, before you calculate, which formula the question is asking for. Practice that step out loud every time you sit a released FRQ.

Tip

What's on the sheet

The current sheet, in the order College Board prints it, has three blocks of formulas plus three probability tables at the back. Block I is descriptive statistics and regression (units 1 and 5 in the revised 2026–27 course). Block II is probability and distributions (unit 2). Block III is sampling distributions and inferential statistics: the standard errors, confidence intervals and test statistics you'll use in units 3 and 4. The tables at the back are the standard normal (z), the t-distribution and chi-square critical values.

BlockWhat it coversUnitsWhere it shows up
Descriptive stats and regressionMean, standard deviation, regression line, r, r-squared, residuals1, 5MCQ and FRQ interpretation
Probability and distributionsProbability rules, expected value, standard deviation of a random variable, binomial2MCQ and FRQ
Inference for proportionsOne- and two-sample z-intervals and z-tests for proportions; chi-square tests for independence and homogeneity3MCQ and the inference FRQ
Inference for meansOne- and two-sample t-intervals and t-tests, matched pairs4MCQ and the inference FRQ
How the formula sheet breaks down by AP Stats unit, and where each block typically shows up on the exam.

Descriptive stats and regression (units 1 and 2)

The top of page one has the summary statistics you use to describe a data set: the sample mean, the sample standard deviation, and the least-squares regression line with its residuals and correlation coefficient.

Sample mean: x-bar = (sum of xi) / n. This is just the average. It's your point estimate for a population mean whenever you're doing a one-sample t-procedure.

Sample standard deviation: s = sqrt[ (sum of (xi - x-bar)^2) / (n - 1) ]. The n minus 1 is the Bessel correction, and the exam expects you to use it whenever the data are a sample (which they almost always are). Standard deviation tells you the typical distance of a data point from the mean, in the original units.

Regression line: y-hat = b0 + b1 x (the 2020 sheet writes this as y-hat = a + bx), where b1 = r (sy / sx) and b0 = y-bar minus b1 x-bar. Slope tells you how much y changes per unit change in x. Intercept is the predicted y when x equals zero (often meaningless in context, but always calculable).

Correlation coefficient r runs from minus 1 to plus 1 and measures the strength and direction of a linear relationship. r-squared is the proportion of variation in y that's explained by the linear model.

Worked example: 5 students studied for 1, 2, 3, 4 and 5 hours and scored 60, 65, 70, 80 and 85 on a test. x-bar = 3, y-bar = 72, sx = 1.58, sy = 10.37, r = 0.991, so b1 = 0.991 (10.37 / 1.58) = 6.5 and b0 = 72 minus 6.5(3) = 52.5. The regression line is y-hat = 52.5 + 6.5x, and r-squared = 0.983 means 98.3 percent of the variation in test score is explained by hours studied in this sample.

The formula sheet gives you the regression slope formula, but on the exam you'll almost always be handed computer output (Minitab, JMP or a generic table). Practice reading the b0 row, the b1 row and the standard error columns from output; you'll rarely need to compute them from raw data.

Good to know

Probability and expected value (unit 2)

The second block on the sheet covers discrete probability. Two general formulas, then the specifics for the binomial distribution.

Expected value (mean) of a discrete random variable: mu-X = sum of (xi times P(xi)). Multiply each outcome by its probability, sum across all outcomes. This is what an average would settle at over infinite trials.

Variance of a discrete random variable: sigma-squared-X = sum of ((xi minus mu-X)^2 times P(xi)). Standard deviation is the square root.

Worked example: A lottery ticket costs 2 dollars. You win 100 dollars with probability 0.01, and nothing otherwise. Expected profit = (98)(0.01) + (-2)(0.99) = 0.98 - 1.98 = -1.00. On average you lose a dollar per ticket.

Binomial distribution: P(X = k) = (n choose k) p^k (1-p)^(n-k), with mean = np and standard deviation = sqrt(np(1-p)). Use whenever you have a fixed number of independent trials, each with the same probability of success.

Worked example: A basketball player makes 70 percent of free throws. Probability she makes exactly 8 of her next 10 = (10 choose 8) (0.7)^8 (0.3)^2 = 45 times 0.05765 times 0.09 = 0.233.


Sampling distributions

The next block gives you the standard deviations of the sampling distributions of a sample mean and a sample proportion. These are the workhorses that make every inference procedure in the second half of the sheet work.

Sampling distribution of a sample mean: mean = mu, standard deviation = sigma / sqrt(n). As n grows, the standard deviation shrinks, which is why bigger samples give tighter estimates. When sigma is unknown (almost always), you use s in its place and switch from z to t.

Sampling distribution of a sample proportion: mean = p, standard deviation = sqrt(p(1-p)/n). Same idea. When p is unknown (again, almost always for inference), you use p-hat in its place.

Central Limit Theorem note: the sampling distribution of x-bar is approximately Normal when n is large enough (roughly 30 or more, or any n if the population is Normal). The sampling distribution of p-hat is approximately Normal when np and n(1-p) are both at least 10. Both conditions have to be checked before you use z or t procedures, and both are worth writing down explicitly on FRQs to earn the conditions point.


Confidence intervals (units 3 and 4)

Every confidence interval on the sheet has the same shape: point estimate plus or minus (critical value times standard error). The four blocks give you the specific standard error for each parameter.

ParameterPoint estimateStandard errorCritical value
One proportionp-hatsqrt(p-hat(1-p-hat)/n)z*
Two proportionsp-hat_1 - p-hat_2sqrt(p-hat_1(1-p-hat_1)/n1 + p-hat_2(1-p-hat_2)/n2)z*
One meanx-bars/sqrt(n)t* with df = n - 1
Two meansx-bar_1 - x-bar_2sqrt(s1^2/n1 + s2^2/n2)t* with df from calculator or conservative min(n1-1, n2-1)
Matched pairsx-bar_d (mean of differences)sd/sqrt(n)t* with df = n - 1
Every confidence interval formula on the sheet, side by side. All share the point-estimate-plus-or-minus-margin-of-error structure.

Worked example (one-mean t-interval): 25 randomly sampled boxes of cereal have a mean weight of 502 grams with s = 8 grams. A 95 percent confidence interval for the true mean weight uses t* = 2.064 (df = 24). Margin of error = 2.064 (8 / sqrt(25)) = 3.30. The interval is 502 plus or minus 3.30, or (498.7, 505.3) grams. Interpretation: we are 95 percent confident that the true mean weight of all boxes lies between 498.7 and 505.3 grams. That interpretation wording matters for the FRQ point.

Worked example (two-proportion z-interval): a survey of 200 men found 120 who owned a car; a survey of 250 women found 130. p-hat_1 = 0.60, p-hat_2 = 0.52. Difference = 0.08. Standard error = sqrt(0.6(0.4)/200 + 0.52(0.48)/250) = sqrt(0.0012 + 0.000998) = 0.0469. 95 percent CI: 0.08 plus or minus 1.96(0.0469) = (-0.012, 0.172). Because zero is inside the interval, we can't conclude the true proportions differ.

Ready to boost your grades?

Join 1M+ students who have used Cognito to ace their exams.

Get started for free!
free account

Significance tests: The test statistics

Every significance test on the sheet has the same shape: (statistic minus null value) divided by standard error. The only trick: for a proportion test the standard error uses p_0 (the null value), because you're testing under the null hypothesis.

TestTest statisticDistributionWhen to use
One-proportion z-test(p-hat - p_0) / sqrt(p_0(1-p_0)/n)Standard normalOne sample, categorical response, testing a claim about p
Two-proportion z-test(p-hat_1 - p-hat_2) / sqrt(p-hat_c(1-p-hat_c)(1/n1 + 1/n2))Standard normalTwo independent samples, comparing p1 and p2
One-sample t-test(x-bar - mu_0) / (s/sqrt(n))t with df = n - 1One sample, quantitative response, testing a claim about mu
Two-sample t-test(x-bar_1 - x-bar_2) / sqrt(s1^2/n1 + s2^2/n2)t with df from calculatorTwo independent samples, comparing mu1 and mu2
Matched-pairs t-testx-bar_d / (sd/sqrt(n))t with df = n - 1Paired data (same subjects, before/after)
Chi-squaresum of ((observed - expected)^2 / expected)Chi-square with appropriate dfCategorical data, two variables
Every test statistic on the sheet. Point-estimate-minus-null-value-over-standard-error is the pattern, with chi-square as the one exception.

Worked example (one-sample t-test): a company claims its light bulbs last 1,000 hours on average. A sample of 20 bulbs has x-bar = 985 with s = 40. Test H0: mu = 1000 versus Ha: mu < 1000 at alpha = 0.05. t = (985 - 1000) / (40 / sqrt(20)) = -15 / 8.944 = -1.677. With df = 19 the critical t for a one-tailed 0.05 test is -1.729. Because -1.677 is not below -1.729 (or equivalently, p-value = 0.055 > 0.05), we fail to reject H0. There is not convincing evidence that the true mean lifetime of the bulbs is less than 1,000 hours.


Chi-square: Which version to use

Both chi-square tests in the course use the same formula. The difference is in the sampling design.

Test of independence: Two categorical variables from one sample, testing whether they're associated. df = (rows - 1)(columns - 1). Expected count in each cell = (row total)(column total) / grand total.

Test of homogeneity: The same test statistic and df as independence, but the sampling design differs. Two or more separate samples, one categorical response, testing whether the distribution of that response is the same across populations. Same formula, same df formula, different wording of the null hypothesis.

The FRQ almost always signals which version you need by how the data were collected. One sample cross-classified on two variables = independence. Multiple samples with counts of one response = homogeneity.


The tables at the back

The last two pages of the sheet are three probability tables: the standard normal cumulative distribution, the t-distribution critical values, and chi-square critical values.

Standard normal table gives P(Z less than z) for z from about -3.4 to 3.4 in steps of 0.01. You look up the row for the first two digits of z and the column for the third. On the exam you can use this or your calculator (normalcdf); either is accepted, but the table is what's provided if your calculator fails.

t-distribution table gives critical values t* for a given confidence level or one-tail alpha, indexed by degrees of freedom. Rows are df from 1 to 30, then 40, 50, 60, 80, 100, 1000 and infinity; columns are upper-tail probabilities (0.25, 0.20, 0.15, 0.10, 0.05, 0.025, 0.02, 0.01, 0.005, 0.0025, 0.001, 0.0005). Matching confidence levels from 50 to 99.9 percent (including 90, 95, 98 and 99 percent) are printed along the bottom.

Chi-square table gives critical values for df from 1 to 30, then 40, 50, 60, 80 and 100 at common alpha levels. If you compute a chi-square that exceeds the critical value at your alpha, reject the null hypothesis. If you're looking for a p-value from a chi-square statistic, most calculators (chi-squared cdf on the TI-84) give it directly, but the table lets you sandwich the p-value between two column values.

Run through this list once the night before the exam.

  • Know which test to reach for from the wording of the question: means vs proportions, one sample vs two, paired vs independent
  • For proportion tests, remember p_0 goes in the standard error, not p-hat
  • For a two-proportion z-test, use the pooled proportion p-hat_c in the standard error, not the individual p-hats
  • For matched pairs, run a ONE-sample t-test on the differences
  • Check conditions on every inference procedure: random sample, 10 percent condition, Normal or large counts condition
  • Interpret confidence intervals in context, with the word 'true' in front of the parameter
  • For chi-square, identify whether independence or homogeneity applies from the data collection
  • Read computer output for the intercept, slope, r-squared and s, and interpret each in context
Formula sheet exam-day checklist

How to practice with the sheet in front of you

The best practice for the formula sheet is timed released-FRQ work with the sheet open on the desk, exactly how you'll have it in the exam. Pull free-response questions from AP Central going back the last five or six years and sort them by which section of the sheet they use. You'll likely find that inference for means and proportions accounts for a large share of the marks.

A useful drill: read a released FRQ stem and, before touching your calculator, say out loud which section of the sheet you'll pull from and why. If you can't do that quickly on 20 sample stems, the calculator work isn't the bottleneck. If you want structured practice on any of the underlying content, Cognito's AP Statistics past papers have every recent released exam with worked solutions.

Practice AP Statistics with our past papers

Every recent released AP Statistics exam, grouped by year, with worked solutions for every FRQ so you can see exactly which formula the rubric wants you to reach for.

frequently asked questions