NEGBINOMDIST

Returns the negative binomial distribution. NEGBINOMDIST returns the probability that there will be number_f failures before the number_s-th success, when the constant probability of a success is probability_s. This function is similar to the binomial distribution, except that the number of successes is fixed, and the number of trials is variable. Like the binomial, trials are assumed to be independent.

For example, you need to find 10 people with excellent reflexes, and you know the probability that a candidate has these qualifications is 0.3. NEGBINOMDIST calculates the probability that you will interview a certain number of unqualified candidates before finding all 10 qualified candidates.

Syntax

NEGBINOMDIST(number_f,number_s,probability_s)

Number_f   is the number of failures.

Number_s   is the threshold number of successes.

Probability_s   is the probability of a success.

Remarks

Example

Number_fNumber_sProbability_sFormula Description (Result)
1050.25=NEGBINOMDIST([Number_f], [Number_s], [Probability_s]) Negative binomial distribution for the specified arguments (0.055049)