Formulas Used on the AP Statistics Exam
This web page shows the formulas that are provided to students at the Advanced Placement Statistics Exam.
Students do not need to memorize these formulas for the exam, but they should know how to use the formulas. Each formula links to a web page that explains how to use the formula.
Descriptive Statistics
- Sample mean = x = ( Σ xi ) / n
- Sample standard deviation = s = sqrt [ Σ ( xi - x )2 / ( n - 1 ) ]
- Pooled sample standard error = SEpooled = sqrt [ (n1 - 1) * s12 + (n2 - 1) * s22 ] / (n1 + n2 - 2) ]
- Simple linear regression line: ŷ = b0 + b1x
- Regression coefficient = b1 = Σ [ (xi - x) (yi - y) ] / Σ [ (xi - x)2]
- Regression slope intercept = b0 = y - b1 * x
- Sample correlation coefficient = r = [ 1 / (n - 1) ] * Σ { [ (xi - x) / sx ] * [ (yi - y) / sy ] }
- Regression coefficient = b1 = r * (sy / sx)
- Standard error of regression slope = sb1 = sqrt [ Σ(yi - ŷi)2 / (n - 2) ] / sqrt [ Σ(xi - x)2 ]
Probability
- Rule of addition: P(A ∪ B) = P(A) + P(B) - P(A ∩ B)
- Rule of multiplication: P(A ∩ B) = P(A) P(B|A)
- Expected value of X = E(X) = μx = Σ [ xi * P(xi) ]
- Variance of X = Var(X) = σ2 = Σ [ xi - E(x) ]2 * P(xi) = Σ [ xi - μx ]2 * P(xi)
The following formulas assume that X has a binomial distribution, the probability of success is P, the number of trials is n, and the number of successes are x. And nCx refers to combinations.
- Binomial formula: P(X = x) = b(x; n, P) = nCx * Px * (1 - P)n - x = nCx * Px * Qn - x
- Mean of binomial distribution = μx = n * P
- Standard deviation of binomial distribution = σx = sqrt[ n * P * ( 1 - P ) ]
- Mean of sampling distribution of the proportion = μp = P
- Standard deviation of sampling distribution of the proportion = σp = sqrt[ P * ( 1 - P ) / n ]
The following formulas assume that x is the mean of a simple random sample of size n from an infinitely-large population, having a mean of μ and a standard deviation of σ.
- Mean of sampling distribution of the mean = μx = μ
- Standard deviation of the sampling distribution of the mean = σx = σ/sqrt(n)
Inferential Statistics
- Standardized test statistic = (Statistic - Parameter) / (Standard deviation of statistic)
- Confidence interval: Sample statistic + Critical value * Standard error of statistic
- Standard deviation of sample mean = σx = σ/sqrt(n)
- Standard deviation of proportion = σp = sqrt[ P * (1 - P)/n ] = sqrt( PQ / n )
- Standard error for the difference between two sample means = SEd = sqrt[ (s12 / n1) + (s22 / n2) ]
- Standard error for the difference between two sample proportions = SEd = sqrt{ [P1(1 - P1) / n1] + [P2(1 - P2) / n2] }
- Chi-square test statistic = Χ2 = Σ[ (Observed - Expected)2 / Expected ]