Get binomial distribution probability
=BINOMDIST(number_s, trials, probability_s, cumulative)
| Parameter | Description |
|---|---|
number_s |
The number of successes. |
trials |
The number of independent trials. |
probability_s |
The probability of success on each trial. |
cumulative |
TRUE = cumulative distribution function, FALSE=probability mass function. |
In the example shown, the BINOMDIST function is used to calculate the probability of rolling a 6 with a die. Since a die has six sides, the probabilit
=BINOMDIST(B5,10,0.1667,TRUE) // returns 0.1614
The formula in D5 is the same, except the cumulative argument has been set to TRUE. This causes BINOMDIST to calculate the probability that there are
=BINOMDIST(B5,10,0.1667,TRUE) // returns 0.1614