Syntax
| Parameter | Description |
|---|---|
| successes | Parameter of the BINOM.DIST function. |
| trials | Parameter of the BINOM.DIST function. |
| prob | Parameter of the BINOM.DIST function. |
| cumulative | Parameter of the BINOM.DIST function. |
Examples
Exactly 7 heads in 10 coin flips
=BINOM.DIST(7, 10, 0.5, FALSE)
At most 2 defective items in batch of 20
=BINOM.DIST(2, 20, 0.05, TRUE)
Probability of passing a quiz by guessing
=BINOM.DIST(6, 10, 0.25, TRUE)
Common Errors
Number_s must be between 0 and trials, trials must be non-negative, and probability_s must be between 0 and 1.
Occurs if any argument is non-numeric text.
Tips
Use cumulative=FALSE for 'exactly k successes' and TRUE for 'k or fewer successes'. For 'more than k', use =1 - BINOM.DIST(k, n, p, TRUE).
Each trial must be independent with the same probability. If you are sampling without replacement from a small population, use HYPGEOM.DIST instead.
The expected number of successes is simply n * p. For 100 trials with p=0.3, expect about 30 successes on average.
Try BINOM.DIST in Viztab
Import your data and use BINOM.DIST with 370+ other formulas. No signup required.
Open Viztab