Improve binomial probability approximations by applying continuity correction to normal distribution.
Last updated: March 2026
Continuity correction bridges the gap between discrete and continuous distributions. The binomial distribution is discrete (only whole number outcomes like 0, 1, 2...), while the normal distribution is continuous. When approximating binomial probabilities with the normal distribution, we need to adjust for this difference.
Instead of finding P(X = 5), we calculate P(4.5 < X < 5.5) using the normal distribution. This ±0.5 adjustment improves accuracy, especially for smaller sample sizes or when probabilities are extreme (close to 0 or 1).
Without continuity correction, normal approximations can deviate significantly from true binomial probabilities. With correction, even modest sample sizes (n ≥ 30) give reliable approximations. This is why statistical software often includes continuity correction as an option.
✓ Use when approximating binomial with normal instead of exact binomial calculation. ✓ More important when np or n(1-p) is small. ✓ Especially helpful when np or n(1-p) is between 5-10. ✗ Skip when n is very large (n > 1000) — correction becomes negligible.
Flip a fair coin 100 times. What's the probability of getting at least 55 heads?
When np or n(1-p) is small (5-20 range). For very large n or probabilities near 0.5, correction has minimal impact. Always use it to be safe.
Each integer x in a discrete distribution can be thought of as occupying the interval [x-0.5, x+0.5). This represents one unit width centered on the integer.
Yes. It reduces bias from the discrete-to-continuous approximation. Effect is smallest for large n, but it never hurts.
Yes, continuity correction applies whenever approximating discrete with continuous distributions (e.g., Poisson with normal).
Remember: P(X ≤ x) gets +0.5 adjustment to upper bound (becomes x+0.5), P(X ≥ x) gets -0.5 to lower bound (becomes x-0.5).
Depends on the software. Some packages (R, Python) may require specifying it. Always check documentation. Many require explicit parameter.
Related Tools
Required sample size.
Estimate population parameters.
Survey accuracy measure.
Single parameter value.
Sampling variability.
Sample statistic distribution.