BINOM.DIST(number_s, trials, probability_s, cumulative)
=BINOM.DIST(3, 10, 0.5, FALSE)
This formula calculates the probability mass function of getting exactly 3 successes in 10 independent trials, each with a 50% probability of success (e.g., getting 3 heads in 10 coin flips). The result is the probability of this specific outcome.
=BINOM.DIST(3, 10, 0.5, TRUE)
This formula calculates the cumulative distribution function of getting 3 or fewer successes in 10 independent trials, each with a 50% probability of success (e.g., getting 3 or fewer heads in 10 coin flips). The result is the cumulative probability of getting 0, 1, 2, or 3 successes.
BINOM.DIST is a formula used to calculate the probability of a certain number of successes in a fixed number of trials with a specified probability of success.