Binomial Distribution
Modeling the number of successes in a sequence of independent trials.
The Binomial Distribution is a discrete probability distribution that models the number of successes in a fixed number of independent 'Bernoulli' trials, where each trial has only two possible outcomes: success or failure.
Think of flipping a coin 10 times and counting the number of heads. In finance, this could model the number of winning trades in a month (where each trade is a trial), or the number of portfolio companies that meet their earnings target in a quarter.
Core Concepts
To find the probability of exactly successes, we consider three pieces:
- : This is the probability of achieving successes. If you want 3 wins and the probability of a win is , the combined probability is .
- : This is the probability of getting the remaining outcomes as failures. The probability of one failure is .
- : This is the binomial coefficient, read as "n choose k". It counts the number of different ways to arrange successes among trials. For example, in 4 trials, getting 2 successes (SSFF) could happen as SSFF, SFSF, SFFS, FSSF, FSFS, or FFSS. There are ways.
Hover over the formula components to see how they relate to the chart above.
The CDF is simply the sum of all the probabilities from the PMF for all outcomes up to and including `k`. For example, the probability of getting 2 or fewer successes, , is calculated as .
Expected Value (Mean)
This is intuitive: if you flip a fair coin (p=0.5) 20 times (n=20), you would expect to get 20 * 0.5 = 10 heads on average.
Variance
The variance measures the spread of the outcomes. Notice it's maximized when p=0.5 (a 50/50 coin flip has the highest uncertainty) and is 0 when the outcome is certain (p=0 or p=1).
Key Derivations
Deriving the Expected Value (Mean)
Step 1: Decompose into Bernoulli Variables
A Binomial random variable with parameters and is the sum of independent Bernoulli random variables , each with probability .
We know from the Bernoulli distribution page that the mean of a single trial is .
Step 2: Use Linearity of Expectation
The expectation of a sum is the sum of the expectations. This property holds even if the variables are not independent.
Step 3: Sum the Bernoulli Means
We are adding the same mean, , to itself times.
Deriving the Variance
We use the same decomposition. Since the Bernoulli trials are **independent**, the variance of their sum is the sum of their variances.
Step 1: Sum the Variances of Bernoulli Variables
The variance of a single Bernoulli trial is .
Step 2: Final Result
We are adding the same variance to itself times.
Applications
Quantitative Finance: Option Pricing
The Binomial Option Pricing Model uses a discrete-time binomial tree to model the price of an underlying asset. At each step, the price can move up or down with a certain probability `p`. By working backward from the option's expiration date, traders can calculate the option's fair value today. Each step in the tree is a Bernoulli trial, and the final distribution of possible prices follows a Binomial distribution.