Result
Enter values and click Calculate
Find binomial probabilities for your parameters.
Probability Mass Function
No chart yet
Calculate to see the PMF bar chart.
No recently used tools
Loading categories...
Free online binomial distribution calculator: compute exact P(X = k), cumulative P(X ≤ k), or range P(a ≤ X ≤ b) probabilities for any number of trials n and success probability p. Interactive Plotly PMF chart, step-by-step KaTeX formulas, and Python scipy export.
Find binomial probabilities for your parameters.
Calculate to see the PMF bar chart.
The binomial distribution models the number of successes in n independent Bernoulli trials, each with the same success probability p. It answers questions like “If I flip a coin 10 times, what’s the probability of getting exactly 6 heads?”
The number of trials n is fixed in advance. Each trial is independent of the others.
Each trial has exactly two outcomes: success (probability p) or failure (probability 1 − p).
The probability of success p remains the same for every trial.
| Statistic | Formula | Example (n=10, p=0.5) |
|---|---|---|
| Mean (μ) | n × p | 5.0 |
| Variance (σ²) | n × p × (1 − p) | 2.5 |
| Std Dev (σ) | √(n × p × (1 − p)) | 1.5811 |
| Skewness | (1 − 2p) / σ | 0.0 (symmetric) |
When n is large enough, the binomial distribution can be approximated by a normal distribution. This is useful for quick calculations without summing many PMF values.
Apply a continuity correction of ±0.5 for better accuracy. For example, P(X ≤ k) ≈ Φ((k + 0.5 − np) / √(np(1 − p))).
Number of defective items in a batch. If defect rate is 5%, what is the probability of finding 0–2 defects in 100 items?
Number of patients responding to treatment. If a drug has 70% efficacy, what is P(at least 15 of 20 respond)?
Number of “yes” responses in a sample. If 30% of voters support a policy, how many in a sample of 50?
Free throw success rates, coin tosses, dice outcomes. Classic probability scenarios modeled by binomial.