Binomial Distribution Calculator
Calculate binomial probabilities: P(X = k), P(X ≤ k), P(X ≥ k). Find mean, variance, and standard deviation for binomial experiments with n trials and success probability p.
Formula & Reference
| Variable | Symbol | Formula | Units |
|---|---|---|---|
| Binomial Distribution Calculator | — | P(X=k) = C(n,k) × pᵏ × (1-p)^(n-k) | probability |
Step-by-Step Examples
Fair coin, n=10 flips. P(exactly 3 heads)?
- P(X=3) = C(10,3) × 0.5^3 × 0.5^7
- = 120 × 0.125 × 0.0078125 = 0.1172
- Mean = 5, SD = 1.58
5% defect rate, n=20. P(at least 2 defective)?
- P(X>=2) = 1 - P(X=0) - P(X=1)
- P(X=0) = 0.95^20 = 0.3585
- P(X=1) = 20×0.05×0.95^19 = 0.3774
- P(X>=2) = 0.2641
p=0.7, n=8. P(all 8 respond)?
- P(X=8) = 0.7^8 = 0.0576
- Only 5.76% chance all 8 respond
- Expected responders: 8×0.7 = 5.6
Real-World Applications
Common Mistakes to Avoid
P(X=k) includes C(n,k) = n!/(k!(n-k)!) the number of ways to arrange k successes in n trials.
For n>100 with small p, use Poisson (lambda=np). For moderate p, use normal approximation.
Binomial requires independent trials. If drawing without replacement from a small population, use hypergeometric distribution instead.
Frequently Asked Questions
Related Math Calculators
Formula Explorer connections
Interpretation: This formula summarizes data, models uncertainty or supports inference about a population or random process. Assumption: The sampling design and distribution assumptions must match the data. Independence, sample size, outliers and measurement quality can materially affect interpretation.