What is the normal approximation to the binomial?
By Jude Wallis · Published
When a binomial count has both and , its distribution is close to a normal curve with mean and standard deviation . Use it to reason about shape. Use binomcdf for the number, because the approximation can miss by a couple of percentage points.
AP Statistics: Unit 2 (topics 2.10 The Binomial Distribution, 2.11 The Normal Distribution, 2.12 Sampling Distributions and the Central Limit Theorem). The normal approximation joins Unit 2 topics 2.10 and 2.11 of the Fall 2026 AP Statistics course and underpins the sampling distributions of topic 2.12. It is also the reason Unit 3 asks you to check the Large Counts condition before every confidence interval and test for a proportion.
What the approximation says
A binomial random variable counts successes in independent trials with a fixed success probability . Its probability histogram is a set of bars, one per whole-number count from 0 to . As grows, that staircase smooths out into a bell shape, and you can compute probabilities by treating the count as normal instead of adding bars.
The approximating curve uses the binomial's own mean and standard deviation:
So for , read "binomial with and ", the mean is successes and the standard deviation is successes. To find you would standardize 45 against that curve and read off a normal probability.
The reason this works is the same reason the central limit theorem works. A binomial count is a sum of independent Bernoulli trials, each worth 0 or 1, and sums of many independent pieces tend toward a normal shape.
The large-counts condition, and why 10
The approximation is safe only when both tails of the binomial have room. The standard check is
Read as the expected number of successes and as the expected number of failures. Both must clear 10.
Both sides matter because a binomial is skewed when sits near 0 or near 1. The count cannot go below 0 or above , so if the mean is close to either wall the distribution has to pile up against it and stretch out on the other side. With and , the mean is only 2 successes, and the standard deviation is , so the mean sits about 1.49 standard deviations above the hard floor at 0. No symmetric curve fits that.
Ten is a convention, not a theorem. It puts the mean roughly three standard deviations clear of both walls, which is enough room for a bell shape to fit without spilling past the ends. Why 10 successes and 10 failures works through that reasoning in detail. Note that the AP Statistics version of the check uses 10; some textbooks use 5, which is looser and less safe.
The same question worked both ways
Take and ask for . Both counts clear the condition: and .
Exact binomial. Adding the bars from 0 to 45, which is what binomcdf(100, 0.4, 45) does, gives
Normal approximation. Standardize with and :
and the standard normal probability below is 0.84628.
So the exact answer is 86.89% and the approximation is 84.63%. The approximation is off by 2.26 percentage points, and it is too small. That is not a rounding difference; it is the method itself. If a question asked whether the probability exceeds 0.85, the two approaches would give opposite answers.
This is why the approximation is a way of thinking about shape, not a shortcut for getting a number. Your calculator computes the exact binomial instantly, so use it. Binompdf vs binomcdf covers which command to press.
Why it missed, and the half-unit fix
The gap has a specific cause. The binomial lives on whole numbers, and includes the entire bar at 45. The normal curve is continuous, and cutting it at exactly 45 slices that bar down the middle, throwing away its right half.
The repair is to cut at 45.5 instead, the outer edge of the bar. That half-unit shift is called the continuity correction:
which gives 0.86921, against the exact 0.86891. The error drops from 2.26 percentage points to 0.03 of a percentage point.
The direction of the shift follows from which bars you want. For add 0.5 to reach 45.5. For subtract 0.5 to reach 44.5, since you want the bar at 45 included on the other side. Getting the direction backwards makes the answer worse than no correction at all.
The correction also fixes something the plain approximation cannot do. A continuous curve assigns probability 0 to any single value, so it says , while the exact binomial gives 0.08122. Treating the value 40 as the interval from 39.5 to 40.5 under the normal curve returns 0.08129, which is right to three decimal places.
How big the error gets
Passing the large-counts check does not mean the error is negligible. It means the shape is roughly right. Here is the same style of question at three sample sizes, each with the exact binomial probability alongside the plain normal approximation.
| Setting | Question | Exact | Normal, no correction | Error |
|---|---|---|---|---|
| , | 0.84623 | 0.79289 | 5.33 points | |
| , | 0.86891 | 0.84628 | 2.26 points | |
| , | 0.90262 | 0.89705 | 0.56 points |
The first row barely satisfies the condition, with exactly and , and it is off by more than five percentage points. The error shrinks roughly in proportion to , so buying one more decimal place of accuracy costs about a hundredfold increase in sample size.
Tails are worse in relative terms. For and , the exact is 0.02710, while the plain normal approximation gives 0.02061. In absolute terms that is only 0.65 of a percentage point, but it is 24% of the true probability, which matters a great deal when the number in question is a p-value.
Where this actually matters
You will rarely need the normal approximation to answer a question, because technology returns exact binomial probabilities. It matters for three other reasons.
It is why inference for proportions works. The sample proportion , read "p-hat", is a binomial count divided by . Dividing by a constant does not change the shape, so once the binomial count is approximately normal, so is , with mean and standard deviation . Every proportion -interval and -test on the AP exam stands on that fact, which is why the Large Counts condition reappears there.
It explains the conditions you are asked to check. When you write " and " on a free-response question, this is the reason. The condition is not paperwork; it is the sentence that licenses using a normal curve.
It tells you what a binomial looks like. Knowing that is centered at 40 with a standard deviation near 4.9 lets you see at a glance that a result of 55 successes is about three standard deviations high and therefore surprising, without computing anything.
For the sampling-distribution version of the same idea, see sampling distributions explained, and the normal distribution calculator will do the arithmetic.
Mistakes to avoid
- Checking only . Both and must be at least 10, and it is the smaller one that decides.
- Using as the standard deviation. It is .
- Reporting the approximation when the exact binomial is one calculator command away. Give the exact value; mention the approximation only if the question asks for it.
- Applying the half-unit correction in the wrong direction. Add 0.5 for a "less than or equal to" bound, subtract 0.5 for a "greater than or equal to" bound.
- Treating a passed condition as a promise of accuracy. At with the condition passes and the plain approximation is still off by more than five percentage points.
- Approximating a count that is not binomial in the first place. Check the four binomial conditions first, using how to tell if a situation is binomial.
Exact binomial against the normal approximation
A polling firm knows that 40% of a large population supports a measure. It takes a random sample of 100 people. Find the probability that at most 45 of them support it, first exactly and then with a normal approximation, and compare.
Identify the distribution. Each person either supports the measure or does not, the sample is random, is fixed, and 100 is far less than 10% of a large population, so the count of supporters is binomial with and .
Check the large-counts condition: and . Both are at least 10, so a normal approximation is reasonable.
Compute the exact probability. sums the binomial probabilities for 0 through 45, which is binomcdf(100, 0.4, 45) = 0.86891.
Set up the normal approximation. and .
Standardize 45: .
Look up the area to the left: .
Compare. Exact 0.86891 against approximate 0.84628, so the approximation is 0.02263 too small, which is 2.26 percentage points.
Apply the continuity correction to see where the gap came from. Cut at 45.5 instead: , and .
The corrected approximation is off by only 0.00030, or 0.03 of a percentage point, because it now includes the whole bar at 45.
Exact: . Plain normal approximation: 0.84628, which is 2.26 percentage points too small. With the half-unit continuity correction: 0.86921, off by 0.03 of a percentage point. Report the exact binomial value, 0.8689.
When the condition fails
A shipment has a 10% defect rate. An inspector examines 20 items at random. Is a normal approximation appropriate for the number of defective items, and how far off is it for ?
Set up the binomial: , , with success defined as "defective".
Check the condition: and . The expected number of successes is 2, well below 10, so the condition fails and the approximation should not be used.
See what the distribution looks like. and , so the mean sits only standard deviations above the hard floor at 0. The distribution is strongly right-skewed.
Compute the exact answer anyway: binomcdf(20, 0.1, 4) = 0.95683.
Compute the plain normal approximation: , giving .
Compare: the approximation is about 0.0248 too small, or 2.48 percentage points.
Note that the continuity correction does not rescue it. Cutting at 4.5 gives and a probability of 0.96880, which halves the error but now overshoots by 1.20 percentage points. The correction fixes the half-unit gap; it cannot fix the skew, and here the skew is what is left.
No. With , the large-counts condition fails and the binomial is too right-skewed for a normal curve. The exact probability is 0.95683; the plain approximation gives 0.93198 and the corrected one gives 0.96880, missing on opposite sides. Use the exact binomial.
Frequently asked questions
When can you use a normal approximation to the binomial?
When and , so both the expected successes and the expected failures clear 10. Both sides matter, because a binomial with near 0 or near 1 is skewed against the wall at 0 or at , and no symmetric curve fits that shape.
How accurate is the normal approximation to the binomial?
Less accurate than students expect. For and , the exact is 0.86891 while the plain approximation gives 0.84628, a gap of 2.26 percentage points. At with the gap is 5.33 points, and at with it is 0.56 points. The error shrinks roughly in proportion to .
What is the continuity correction?
A half-unit shift that accounts for the binomial living on whole numbers while the normal curve is continuous. Add 0.5 to an upper bound and subtract 0.5 from a lower bound so the whole bar is included. In the , example it cuts the error from 2.26 percentage points to 0.03.
Should you use the approximation on the AP exam?
Not for computing a binomial probability. Your calculator returns the exact value with binomcdf, and the exact value is what to report. The approximation matters because it is the reason the sampling distribution of is treated as normal, which is what the Large Counts condition is checking in every proportion interval and test.
What is the difference between the large-counts condition and the 10% condition?
They check different things. Large counts ( and ) says the shape is close enough to normal. The 10% condition says the sample is small relative to the population, so sampling without replacement keeps the trials close enough to independent. A situation can pass one and fail the other.