WorksheetFunction.NegBinom_Dist(Double, Double, Double, Boolean) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns the negative binomial distribution. NegBinom_Dist 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.
public:
double NegBinom_Dist(double Arg1, double Arg2, double Arg3, bool Arg4);
public double NegBinom_Dist (double Arg1, double Arg2, double Arg3, bool Arg4);
Public Function NegBinom_Dist (Arg1 As Double, Arg2 As Double, Arg3 As Double, Arg4 As Boolean) As Double
Parameters
- Arg1
- Double
Number_f - the number of failures.
- Arg2
- Double
Number_s - the threshold number of successes.
- Arg3
- Double
Probability_s - the probability of a success.
- Arg4
- Boolean
Cumulative - A logical value that determines the form of the function. If cumulative is true, NegBinom_Dist returns the cumulative distribution function; if false, it returns the probability density function.
Returns
Remarks
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. NegBinom_Dist calculates the probability that you will interview a certain number of unqualified candidates before finding all 10 qualified candidates:
Number_f and number_s are truncated to integers.
If any argument is nonnumeric, NegBinom_Dist returns the #VALUE! error value.
If probability_s < 0 or if probability > 1, NegBinom_Dist returns the #NUM! error value.
If number_f < 0 or number_s < 1, NegBinom_Dist returns the #NUM! error value.
The equation for the negative binomial distribution is:
Figure 1: Equation for the negative binomial distribution
where:
x is number_f, r is number_s, and p is probability_s.