Calculates the probabilities for a binomial distribution, with replacement of draws.
Syntax
k: Maximum number of success to calculate the probability. Eg., 3
n: Number of independent trials. Eg., 5
p: Probability of success. Eg., 0.5
mode: Determines which function to return. Defaults to 0 if omitted.
0 or FALSE - BINOMDIST returns the probability mass function
Examples
|
Formula |
Result |
|
=BINOMDIST(A2;B2;C2;D2) |
0.3125 |
|
=BINOMDIST(A3;B3;C3;D3) |
0.726506212 |
|
=BINOMDIST(A4;B4;C4;D4) |
0.121060821 |
Possible Errors
|
Errors |
Meaning |
|
#N/A! |
|
|
#NAME! |
|
|
#VALUE! |
|
|
#REF! |
|
|
#NUM! |
|
Similar Functions