Statistics · Statistical distributions
1 / 10
Cumulative binomial probabilities
Finding P(X ≤ r), P(X < r), P(X ≥ r), P(X > r) and P(a ≤ X ≤ b) for a binomial distribution by building everything from the cumulative function P(X ≤ r) (binomcdf), with care over the off-by-one when an inequality is strict or "at least". Includes the complement for "≥" and "two-stage" problems where the success of one binomial becomes the trial of another.
Statistics · Statistical distributions
Cumulative binomial probabilities
Finding P(X ≤ r), P(X < r), P(X ≥ r), P(X > r) and P(a ≤ X ≤ b) for a binomial distribution by building everything from the cumulative function P(X ≤ r) (binomcdf), with care over the off-by-one when an inequality is strict or "at least". Includes the complement for "≥" and "two-stage" problems where the success of one binomial becomes the trial of another.
Why it works
Adding single probabilities one at a time is slow, so for ranges we use the cumulative probabilitywhich a calculator gives directly as . Every other range can be rebuilt from — the whole skill is translating the inequality correctly:
The off-by-one is where marks are lost. Because is a whole number:
- excludes , so it is ;
- is the complement of , not of — for
Get the cut-off right by asking "what is the largest value the opposite event can take?" — that is the number you put inside .
Two-stage ("binomial of a binomial"). Sometimes the result of one binomial experiment becomes a single success/failure that you then repeat. For example, first find from one binomial; then the number of boxes (out of several) with that property is itself binomial with success probability . Work out the inner probability first, then treat it as the of a new binomial.