Calculates probabilities for a negative binomial distribution.
NEGBINOMDIST(x, r, p)
For independent trials each with a probability p of success, NEGBINOMDIST returns the probability that there will be exactly x failures before there have been r successes. The formula used is:
NEGBINOMDIST(1, 1, 0.5)
returns 0.25 (25%), the probability that heads will come up exactly once before tails has come up when tossing a coin.
A Quality Control Scenario
Scenario: A factory produces a specific type of electronic component. The company's quality control department knows that the probability of a randomly selected component being defective is 20% (or 0.20).
The team leader needs to find 5 non-defective components for a crucial product assembly. She wants to know the probability of having to inspect a certain number of components before she finds the 5th non-defective one.
This is a perfect scenario for the negative binomial distribution, as we are looking for the probability of a certain number of failures (defective components) before a fixed number of successes (non-defective components) is achieved.
Key Variables for NEGBINOMDIST:
The NEGBINOMDIST function typically requires three inputs:
Applying the NEGBINOMDIST Function:
The function calculates the probability mass function (PMF), which gives the probability of getting exactly x failures before the k-th success. The formula would look something like this in a spreadsheet program:
NEGBINOMDIST(x, 5, 0.80)
Let's calculate the probability of having to inspect 0, 1, 2, 3, and 4 defective components before finding the 5th non-defective one.
Table of Probabilities
Number of Defective Components (x) | Total Components Inspected (x + 5) | Probability NEGBINOMDIST(x, 5, 0.8) | Calculation of Probability | ||
|---|---|---|---|---|---|
A | B | C | D | ||
1 | 0 | 5 | 0.32768 | ||
2 | 1 | 6 | 0.32768 | ||
3 | 2 | 7 | 0.196608 | ||
4 | 3 | 8 | 0.0917504 | ||
5 | 4 | 9 | 0.03670016 |
Interpretation:
The table shows the precise probability of finding a certain number of defective components before the 5th non-defective component is found.
The NEGBINOMDIST function is a powerful tool for analyzing situations where we need to model the number of "failures" before a specific number of "successes" is reached.
PRODUCT & FEATURES
RESOURCES
Terms | Privacy | Spam Policy
© 2026 Zapof