By Fatskills Exam Guides Team — the exam nerds behind 28,500+ quizzes and 2.1M practice questions across 500+ global exams.
This topic focuses on using the normal distribution to find probabilities (proportions) and percentiles (cutoff values) for normally distributed data. On the AP exam, you’ll use normalcdf to find the proportion of data below, above, or between values, and invNorm to find the value corresponding to a given percentile. These skills are essential for confidence intervals, hypothesis tests, and interpreting real-world data—like determining what percentage of SAT scores fall above a certain threshold or finding the cutoff score for the top 10% of test-takers.
normalcdf
invNorm
z = (x – ?) / ?
normalcdf(lower, upper, ?, ?)
lower
upper
?
-1E99
1E99
invNorm(area, ?, ?)
x
P(X < x) = area
np-10
n(1–p)-10
p?
? = p
? = ?(p(1–p)/n)
Example: SAT scores are normally distributed with-= 1050 and-= 200. What proportion of students score above 1300?
P(X > 1300)
lower = 1300
upper = 1E99
normalcdf(1300, 1E99, 1050, 200)-0.1056
Example: What score separates the top 5% of SAT test-takers (? = 1050,-= 200)?
P(X > x) = 0.05
P(X < x) = 0.95
invNorm(0.95, 1050, 200)-1380.4
Example: A factory claims 5% of its lightbulbs are defective. In a sample of 400 bulbs, what’s the probability that more than 7% are defective?
np = 400(0.05) = 20-10
n(1–p) = 400(0.95) = 380-10
? = p = 0.05
? = ?(p(1–p)/n) = ?(0.05(0.95)/400)-0.0109
P(p? > 0.07) = normalcdf(0.07, 1E99, 0.05, 0.0109)-0.0344
Correction: Only use normalcdf if the data is approximately normal (check with a histogram or given info). For skewed data, the normal approximation fails.
Mistake: Forgetting to convert between "greater than" and "less than" for invNorm.
Correction: invNorm gives the value for P(X < x). For "top 10%," use invNorm(0.90), not invNorm(0.10).
P(X < x)
invNorm(0.90)
invNorm(0.10)
Mistake: Mixing up normalcdf bounds (e.g., using 1E99 as lower instead of upper).
Correction: For P(X > a), use normalcdf(a, 1E99, ?, ?). For P(X < a), use normalcdf(-1E99, a, ?, ?).
P(X > a)
normalcdf(a, 1E99, ?, ?)
P(X < a)
normalcdf(-1E99, a, ?, ?)
Mistake: Ignoring the 10% condition when sampling without replacement.
Correction: If sampling without replacement, check that the sample size n-0.10N (where N is the population size).
n-0.10N
N
Mistake: Using invNorm with the wrong mean/standard deviation.
Heights of adult men are normally distributed with-= 70 inches and-= 3 inches. What proportion of men are shorter than 65 inches? (A) 0.0475 (B) 0.0500 (C) 0.9525 (D) 0.9500
Answer: (A) 0.0475 Explanation: normalcdf(-1E99, 65, 70, 3)-0.0475.
normalcdf(-1E99, 65, 70, 3)-0.0475
A college entrance exam has scores that are normally distributed with-= 500 and-= 100. (a) What score corresponds to the 80th percentile? (b) What proportion of students score between 450 and 600?
Answer: (a) invNorm(0.80, 500, 100)-584.16-584 (round to nearest whole number). (b) normalcdf(450, 600, 500, 100)-0.5328-53.28%.
invNorm(0.80, 500, 100)-584.16
normalcdf(450, 600, 500, 100)-0.5328
normalcdf(-1E99, x, ?, ?)
normalcdf(x, 1E99, ?, ?)
Join 4M+ learners. Unlock unlimited quizzes, wrong-answer tracking, flashcards + reminders, study guides, and 1-on-1 challenges.