Clean PMF/CDF, calculators, and step-by-step derivations of mean and variance. Built to be a long-term study companion.
Fixed number of independent trials n, success probability p each trial; X = number of successes.
=BINOM.DIST(k,n,p,FALSE) · CDF =BINOM.DIST(k,n,p,TRUE) · Legacy PMF =BINOMDIST(k,n,p,FALSE)Independent, identical trials with success probability p. X = number of trials until the first success (support 1,2,…).
=GEOM.DIST(k,p,FALSE) · CDF =GEOM.DIST(k,p,TRUE) · Legacy =GEOMDIST(k,p,FALSE/TRUE) · Fallback via NegBin: =NEGBINOM.DIST(k-1,1,p, FALSE/TRUE)Independent, identical trials with success probability p. X = number of trials to accumulate r successes. (Geometric is r=1.)
=NEGBINOM.DIST(k-r, r, p, FALSE) · CDF =NEGBINOM.DIST(k-r, r, p, TRUE)Counts events in a fixed interval when events occur independently at a constant average rate λ.
=POISSON.DIST(k, lambda, FALSE) · CDF =POISSON.DIST(k, lambda, TRUE) · Legacy: =POISSON(k, lambda, FALSE/TRUE)