Previous Up Next

20.4.4  Negative binomial distribution

The probability density function for the negative binomial distribution.

If you repeatedly perform an experiment with probability of success p, then, given an integer n, the probability of k failures that occur before you have n successes is given by the negative binomial distribution, which can be computed by



n+k−1
k


pn(1−p)k.     (2)

The negbinomial command finds the density function for the negative binomial distribution.

Example

negbinomial(4,2,0.5)
     
0.15625           

Note that

  


n
k


=
n!
k! (nk)!
=
n (n−1) … (nk+1)
k!
.

The second formula makes sense even if n is negative, and you can write

  negbinomial(n,k,p)=


n
k


pn (p−1)k,

from which the name negative binomial distribution comes from. This also makes it simple to determine the mean (n(1−p)/p) and variance (n(1−p)/p2). The negative binomial is also called the Pascal distribution (after Blaise Pascal) or the Pólya distribution (after George Pólya).

The cumulative distribution function for the negative binomial distribution.

The negbinomial_cdf command finds the cumulative distribution function for the negative binomial distribution.

Examples

negbinomial_cdf(4,0.5,2)
     
0.34375           
negbinomial_cdf(4,0.5,2,5)
     
0.40234375           
The inverse distribution function for the negative binomial distribution.

The negbinomial_icdf command gives the inverse distribution function for the negative binomial distribution.

Example

negbinomial_icdf(4,0.5,0.9)
     
8           

Previous Up Next