binom_inv
Inverse binomial CDF (smallest k with CDF ≥ alpha).
Syntax
Section titled “Syntax”v = binom_inv(trials, probability_s, alpha)Description
Section titled “Description”Returns the smallest integer k such that binom_dist(k, trials, p, true) ≥ alpha — the critical value for a one-sided binomial test.
Example
Section titled “Example”binom_inv(10, 0.5, 0.95) % 8See also
Section titled “See also”binom_dist— Binomial-distribution PDF or CDF.