RATS 11.1
RATS 11.1

The binomial distribution describes the number of "successes" in a series of Bernoulli trials. Another related distribution is the Negative Binomial, which is the distribution of the number of failures to achieve a certain number of successes.
 

Parameters

probability of success (\(p\)), number of trials (\(n\))

Probability Function

\(\left( {\begin{array}{*{20}c} n \\ k  \\ \end{array}} \right)p^k (1 - p)^{n - k}\)

Support

Number of successes (\(k\)) in {0,...,\(n\)}

Mean

\(np\)

Variance

\(np(1-p)\)

Probability Functions

%BINOMIALK(k,n,p) is the probability of exactly \(k\) successes given parameters \(n\) and \(p\).

 

%BINOMIALCDF(k,n,p) is the cumulative probability of no more than \(k\) successes given parameters \(n\) and \(p\).


 


Copyright © 2026 Thomas A. Doan