WorksheetFunction.Binom_Inv(Double, Double, Double) Method

Definition

Returns the inverse of the individual term binomial distribution probability.

public:
 double Binom_Inv(double Arg1, double Arg2, double Arg3);
public double Binom_Inv (double Arg1, double Arg2, double Arg3);
Public Function Binom_Inv (Arg1 As Double, Arg2 As Double, Arg3 As Double) As Double

Parameters

Arg1
Double

Trials - the number of Bernoulli trials.

Arg2
Double

Probability_s - the probability of a success on each trial.

Arg3
Double

Alpha - the criterion value.

Returns

Remarks

If Trials, Probability_s, or Alpha is nonnumeric, the Binom_Inv method generates an error.

If Trials is not an integer, it is truncated.

If Trials < 0, the Binom_Inv method generates an error.

If Probability_s < 0 or Probability_s > 1, the Binom_Inv method generates an error.

If Alpha < 0 or Alpha > 1, the Binom_Inv method generates an error.

Applies to