Binomial distribution

Count of successes in n independent trials with constant probability p.

Back to Glossary

Usage example

Exactly k: C(n,k)·p^k·(1−p)^(n−k). Any-unique: 1−(1−p)^n.

Notes & caveats

If p changes each trial (pity, buffs), use ∏(1−p_i) and its complements instead of a single p.

See also

Back to glossary index