Binomial Distribution Formula
The binomial distribution formula calculates the probability of obtaining exactly $ x $ successes in $ n $ independent Bernoulli trials, where each trial has a success probability $ p $ and failure probability $ q = 1 - p $. The formula is:
where:
$ \binom{n}{x} = \frac{n!}{x!(n - x)!} $ is the binomial coefficient, representing the number of ways to choose $ x $ successes from $ n $ trials,
$ p $ is the probability of success on a single trial,
$ 1 - p $ is the probability of failure,
$ x $ is the number of successes (an integer from 0 to $ n $).
Key Properties
Mean (Expected Value): $ \mu = np $
Variance: $ \sigma^2 = np(1 - p) $
Standard Deviation: $ \sigma = \sqrt{np(1 - p)} $
Applications
Modeling outcomes in experiments with two possible results (e.g., heads/tails, pass/fail).
Quality control, survey responses, and medical trials.
Example
For a fair coin tossed 10 times ($ n = 10 $, $ p = 0.5 $), the probability of getting exactly 6 heads is:
In Excel
Use the BINOM.DIST function:
BINOM.DIST(x, n, p, FALSE)for exactly $ x $ successes,BINOM.DIST(x, n, p, TRUE)for at most $ x $ successes.

![{\displaystyle \Pr[Y=m]=\sum _{k=m}^{n}{\binom {n}{m}}{\binom {n-m}{k-m}}p^{k}q^{m}(1-p)^{n-k}(1-q)^{k-m}}](https://imgs.search.brave.com/_ZzMOmRKyfxVmQ4vVVgLsklO2iEaHy6xvZBCUdfHG-4/rs:fit:500:0:0:0/g:ce/aHR0cHM6Ly93aWtp/bWVkaWEub3JnL2Fw/aS9yZXN0X3YxL21l/ZGlhL21hdGgvcmVu/ZGVyL3N2Zy84MzY5/ZWY4NDZmZmRhNzI5/MDBlZmM2N2IzMzQ5/MjNmNzBjZTQ4Y2E1.jpeg)
