Continuity Correction — The ±0.5 Fix for Discrete to Continuous
When approximating binomial or Poisson with the normal, adding ±0.5 at boundaries dramatically improves accuracy. Compare exact vs uncorrected vs corrected side by side.
Why This Statistical Analysis Matters
Why: Discrete distributions (binomial, Poisson) have probability mass at integers only. The normal is continuous. Approximating discrete with continuous creates a mismatch at boundaries — the ±0.5 correction fixes this.
How: P(X ≤ k): use (k+0.5−μ)/σ. P(X ≥ k): use (k−0.5−μ)/σ. P(X = k): use interval [k−0.5, k+0.5]. Apply when np ≥ 5 and n(1−p) ≥ 5 (binomial) or λ ≥ 5 (Poisson).
- ●±0.5 at boundaries
- ●Yates 1934 origin
- ●np ≥ 5 rule of thumb
Discrete to Continuous — The ±0.5 Fix
When approximating binomial or Poisson with the normal, adding ±0.5 at boundaries dramatically improves accuracy. See exact vs uncorrected vs corrected side by side.
Real-World Scenarios — Click to Load
Distribution
Query Type
With vs Without Correction Comparison
Discrete PMF with Normal Curve Overlay
Exact CDF vs Normal Approximation (with/without correction)
Calculation Breakdown
For educational and informational purposes only. Verify with a qualified professional.
📈 Statistical Insights
Correction amount for discrete-to-continuous boundary
— Yates 1934
Binomial rule for valid normal approximation
— NIST
Poisson rule for valid normal approximation
— NIST
Key Takeaways
- • Continuity correction adds ±0.5 when approximating discrete distributions (binomial, Poisson) with the normal
- • It improves accuracy by accounting for the gap between discrete bars and the continuous normal curve
- • Matters most for small n — when n is large (e.g., n > 1000), the effect becomes negligible
- • Rule of thumb: use when np ≥ 5 and n(1−p) ≥ 5 for binomial; λ ≥ 5 for Poisson
- • P(X ≤ k) uses +0.5; P(X ≥ k) uses −0.5; P(X = k) uses ±0.5 around k
Did You Know?
How It Works
1. Discrete vs Continuous
Binomial and Poisson are discrete — probability mass at integers only. The normal is continuous. Approximating discrete with continuous creates a mismatch at boundaries.
2. The Gap Problem
For P(X ≤ k), the discrete CDF jumps at k. The normal CDF is smooth. Using Φ((k−μ)/σ) treats the boundary at k, but the discrete bar at k extends from k−0.5 to k+0.5 conceptually.
3. The ±0.5 Fix
Add 0.5 when finding P(X ≤ k): use (k+0.5−μ)/σ. Subtract 0.5 for P(X ≥ k): use (k−0.5−μ)/σ. For P(X=k), use the interval [k−0.5, k+0.5].
4. Visual Demonstration
Plot discrete PMF bars with the normal curve overlay. The correction extends the shaded region by half a unit to better cover the discrete probability.
5. When to Apply
Apply when np ≥ 5 and n(1−p) ≥ 5 (binomial) or λ ≥ 5 (Poisson). For very large n, the correction has minimal effect but is still recommended for consistency.
Expert Tips
Always use for small n
When n < 100, the continuity correction can reduce error by 50% or more.
Skip for n > 1000
For very large n, the correction effect is negligible (< 0.1%).
Direction matters
P(X ≤ k) uses +0.5; P(X ≥ k) uses −0.5. Do not mix them up.
Compare exact when possible
Use this calculator to compare exact vs corrected vs uncorrected — it builds intuition.
Comparison: With vs Without Correction
| n | P(X≤k) No correction | P(X≤k) With correction | Exact | Typical improvement |
|---|---|---|---|---|
| 20 (Small n) | Often underestimates | Closer to exact | Ground truth | 10–50% |
| 50 (Medium n) | Often underestimates | Closer to exact | Ground truth | 10–50% |
| 100 (Large n) | Often underestimates | Closer to exact | Ground truth | 5–20% |
| 500 (Very large) | Often underestimates | Closer to exact | Ground truth | <5% |
Frequently Asked Questions
When is continuity correction necessary?
When approximating a discrete distribution (binomial, Poisson) with the normal. It improves accuracy, especially for small n.
Does it always improve accuracy?
In most cases yes. For P(X ≤ k) and P(X ≥ k), the correction typically reduces absolute error. For P(X = k), it helps align the normal area with the discrete bar.
What about Poisson?
The same ±0.5 correction applies. Poisson(λ) is approximated by Normal(μ=λ, σ²=λ). Use (k+0.5−λ)/√λ for P(X ≤ k), etc.
Is it +0.5 or −0.5?
P(X ≤ k): add 0.5 → (k+0.5−μ)/σ. P(X ≥ k): subtract 0.5 → (k−0.5−μ)/σ. P(X = k): use interval [k−0.5, k+0.5].
What if np < 5?
The normal approximation may be poor regardless. Consider using exact binomial/Poisson calculations or a different approximation.
Who invented the continuity correction?
Frank Yates (1934) for chi-square. The idea for normal approximation of binomial dates to earlier work; Yates formalized it for 2×2 tables.
Can I use it for hypergeometric?
The normal approximation to hypergeometric also benefits from continuity correction, but the formulas differ slightly.
Why 0.5 specifically?
Discrete values are at integers. The "width" of each integer bar is 1. Half of that (0.5) extends the boundary to better match the continuous curve.
Continuity Correction by the Numbers
Official Sources
Disclaimer: This calculator is for educational purposes. The standard normal CDF uses the Abramowitz & Stegun approximation. For critical applications (clinical trials, quality control), verify results against established statistical software. The normal approximation requires np ≥ 5 and n(1−p) ≥ 5 (binomial) or λ ≥ 5 (Poisson).
Related Calculators
Central Limit Theorem Calculator
Interactive Central Limit Theorem demonstration. See how sample means become normally distributed regardless of population shape.
StatisticsSum Distribution Calculator (ΣX)
Calculate the sampling distribution of the sum ΣX = X₁+X₂+...+Xₙ. Find mean, SD, and probabilities from population parameters or a discrete P(x) table.
StatisticsBenford's Law Calculator
Test your data against Benford's Law. Chi-square test, MAD analysis, and fraud detection for first-digit distributions.
StatisticsBeta Distribution Calculator
Calculate PDF, CDF, mean, mode, and variance for the Beta distribution. Bayesian priors, A/B testing, and project management.
StatisticsBinomial Distribution Calculator
Calculate binomial probabilities, expected values, and cumulative distribution functions. Features PMF and CDF visualization, probability tables, and...
StatisticsEmpirical Rule Calculator
Apply the 68-95-99.7 rule to normal distributions. Given mean and SD, see what percentage falls within 1, 2, 3 standard deviations. Compare with Chebyshev.
Statistics