Syntax
| Parameter | Description |
|---|---|
| failures | Parameter of the NEGBINOM.DIST function. |
| successes | Parameter of the NEGBINOM.DIST function. |
| prob | Parameter of the NEGBINOM.DIST function. |
| cumulative | Parameter of the NEGBINOM.DIST function. |
Examples
3 rejections before 5th sale
=NEGBINOM.DIST(3, 5, 0.4, FALSE)
At most 10 failures before 3 successes
=NEGBINOM.DIST(10, 3, 0.3, TRUE)
Modeling customer acquisition attempts
=NEGBINOM.DIST(7, 2, 0.15, TRUE)
Common Errors
Number_f must be >= 0, number_s must be >= 1, and probability_s must be between 0 and 1.
Occurs when arguments are non-numeric.
Tips
The first argument is the number of failures, not the total number of trials. Total trials = failures + successes.
When number_s = 1, the negative binomial becomes the geometric distribution — the number of failures before the first success.
Set cumulative=TRUE to answer 'what is the probability of reaching my target within a total of k+s trials?' This helps with project planning and resource allocation.
Try NEGBINOM.DIST in Viztab
Import your data and use NEGBINOM.DIST with 370+ other formulas. No signup required.
Open Viztab