BinomDist(Successes, Trials, Probability, Cumulative)
Successes. The number of successful trials.
Trials. The number of independent trials.
Probability. Success probability for each trial. The value must satisfy the constraint: 1 >= Probability >= 0.
Cumulative. Boolean value that defines function form:
True. The BinomDist function returns integral distribution function, that is, the probability of the fact that the number of successful trials is not less than the Successes parameter value.
False. The BinomDist function returns distribution function, that is, the probability of the fact that the number of successful trials is equal to the Successes parameter value.
The method returns a single binomial distribution value.
The function is used to solve problems involving a fixed number of tests or trials, when the result of any trial can be success or failure only, trials are independent and the success probability is constant for the entire experiment period.
See also: