Binomial Distribution
Understanding the Binomial Distribution
The binomial distribution is a probability distribution that models the number of successes—and by extension, failures—in a fixed number of independent trials, each with the same probability of success.
NoteThe binomial distribution is applicable when an experiment meets the following criteria:
- There is a fixed number of trials (n)
- Each trial is independent
- There are only two possible outcomes for each trial (success or failure)
- The probability of success (p) remains constant for all trials
Key Parameters
The binomial distribution is characterized by two parameters:
- n: the number of trials
- p: the probability of success on each trial
These parameters are crucial in determining the shape and properties of the distribution.
Probability Mass Function
The probability of exactly $k$ successes in $n$ trials is given by the binomial probability mass function:
Consider an event that occurs $n$ times, with probability of success $p$ and probability of failure $1-p$. If we want the probaility where we get $k$ number of successes. Let us call the the event of sucesss $S$ and the event of failure $F$.
Because there are multiple different orders that this can happen, for example:
$$SSSFF \cdots$$
$$SFSS \cdots$$
so we just need to determine the number of ways we can order this.
This process of choosing the number of ways to order is exactly the same as the binomial coefficient of $(a+b)^n$.
Therefore, since the binomial coefficient is given by \binom{nCk}, we can say that
$$ P(X = k) = \binom{n}{k} p^k (1-p)^{n-k} $$
Where:
- $\binom{n}{k}$ is the binomial coefficient, calculated as $\frac{n!}{k!(n-k)!}$
- $p^k$ represents the probability of k successes
- $(1-p)^{n-k}$ represents the probability of (n-k) failures
While understanding this formula is important, IB Math AA SL students are not expected to perform manual calculations using it. Instead, focus on using technology to compute probabilities.
Mean and Variance
Two important properties of the binomial distribution are its mean (expected value) and variance:
- Mean: $\mu = np$
- Variance: $\sigma^2 = np(1-p)$
In a factory producing light bulbs, each bulb has a 5% chance of being defective. If we randomly select 100 bulbs:
Mean number of defective bulbs: $\mu = np = 100 * 0.05 = 5$ Variance: $\sigma^2 = np(1-p) = 100 * 0.05 * 0.95 = 4.75$
Using Technology for Binomial Probabilities
Students are expected to use technology (such as graphing calculators or statistical software) to calculate binomial probabilities. This typically involves inputting the parameters n and p, along with the specific value or range of k for which the probability is needed.
ExampleUsing a TI-84 calculator to find the probability of exactly 3 defective bulbs in the previous example:
- Press [2nd] [DISTR]
- Select "binompdf("
- Enter: binompdf(100, 0.05, 3)
- The result is approximately 0.1324 or 13.24%
Cumulative Binomial Probability
Often, we're interested in the probability of getting up to a certain number of successes, rather than exactly a specific number. This is where cumulative binomial probability comes in.
ExampleTo find the probability of getting 3 or fewer defective bulbs:
- On a TI-84, use "binomcdf("
- Enter: binomcdf(100, 0.05, 3)
- The result is approximately 0.2650 or 26.50%
Recognizing Binomial Situations
A crucial skill for students is identifying scenarios where the binomial distribution is an appropriate model. Here are some key indicators:
- Fixed number of trials
- Two possible outcomes per trial (success/failure)
- Constant probability of success
- Independent trials
Binomial scenario: Flipping a fair coin 10 times and counting the number of heads.
- n = 10 (fixed number of flips)
- p = 0.5 (probability of heads on each flip)
- Each flip is independent
- Only two outcomes: heads or tails
Non-binomial scenario: Drawing cards from a deck without replacement.
- The probability changes after each draw, violating the constant probability condition
Students often mistakenly apply the binomial distribution to situations where trials are not independent or where the probability of success changes. Always check if all conditions for a binomial experiment are met before applying the model.