IB MATHEMATICS: APPLICATIONS AND INTERPRETATION • STATISTICS AND PROBABILITY

Binomial Distribution — SL 4.6 Binomial distribution and applications

Model the probability of successes in repeated independent trials using a powerful discrete distribution.

Historical Context & Motivation

Humans have always been fascinated by games of chance — rolling dice, flipping coins, and predicting outcomes. Long before modern statistics existed, mathematicians tried to answer a seemingly simple question: if you repeat the same experiment many times, how likely is a particular result? The binomial distribution is the mathematical tool that finally gave us a precise answer. It allows us to calculate the probability of getting a specific number of successes when we repeat an identical, independent experiment a fixed number of times.

1654
The Birth of Probability Theory
Blaise Pascal and Pierre de Fermat exchanged letters about gambling problems, laying the groundwork for formal probability theory and the study of repeated trials.
1713
Jacob Bernoulli's Ars Conjectandi
Published posthumously, this landmark book introduced Bernoulli trials — the concept of independent experiments with exactly two outcomes — and proved the law of large numbers.
1738
De Moivre's Approximation
Abraham de Moivre showed that for large numbers of trials, the binomial distribution approximates a bell-shaped curve, connecting discrete and continuous probability.
1800s
Applications Expand
Scientists and statisticians applied the binomial distribution to quality control, genetics, and medical trials, making it one of the most widely used distributions in applied mathematics.

The core question that the binomial distribution answers is this: if you know the probability of success on any single trial, and you perform that trial a fixed number of times, what is the probability that you get exactly a certain number of successes? Whether you're predicting how many free throws a basketball player will make out of ten, or how many defective items appear in a batch of products, the binomial distribution provides the framework to answer these questions with precision.

Core Principles & Definitions

Before using the binomial distribution, you need to check that your situation fits a specific set of conditions. These conditions define what mathematicians call a binomial experiment. If even one condition is violated, the binomial model may not apply, and you would need a different distribution. The four conditions are often remembered using the acronym FIST: Fixed number of trials, Independent trials, only two outcomes (Success/failure), and the same probability of success for each Trial.

1

Fixed Number of Trials (n)

The experiment is performed a predetermined, fixed number of times. We call this number n. For example, flipping a coin exactly 10 times means n = 10.
2

Independent Trials

The outcome of one trial does not affect the outcome of any other trial. Each flip, roll, or test stands on its own — no memory or influence between trials.
3

Two Outcomes Only

Each trial results in exactly one of two outcomes: success or failure. 'Success' simply means the outcome we're counting — it doesn't have to be positive.
4

Same Probability (p)

The probability of success, denoted p, remains constant from trial to trial. The probability of failure is q = 1 − p.
KEY TAKEAWAY
Think of a binomial experiment like a factory assembly line with identical machines. Each machine (trial) either produces a good part (success) or a defective part (failure). The machines don't talk to each other (independence), the line runs for a set number of products (fixed n), and each machine has the same defect rate (constant p). If any of these conditions break — say the machines start breaking down more often as the day goes on — the binomial model no longer fits.

When a random variable X counts the number of successes in a binomial experiment, we write X ~ B(n, p). This notation tells us that X follows a binomial distribution with parameters n (the number of trials) and p (the probability of success on each trial). The possible values of X range from 0 (no successes at all) to n (every trial is a success).

Visualizing the Binomial Distribution

One of the best ways to understand the binomial distribution is to see its shape. The diagram below shows the probability distribution for X ~ B(10, 0.5) — the probabilities of getting 0 through 10 heads when flipping a fair coin 10 times. Notice how the distribution is symmetric and peaks in the middle at x = 5, which is the expected number of heads. Each bar represents the probability of getting exactly that many heads.

The tallest bar at x = 5 shows the most probable outcome. The symmetric bell shape occurs because p = 0.5. When p ≠ 0.5, the distribution becomes skewed toward one side.

The shape of a binomial distribution depends heavily on the value of p. When p = 0.5, the distribution is perfectly symmetric — it looks like a bell curve. When p is small (like 0.1), the distribution is right-skewed, meaning most of the probability is piled up near 0 with a long tail stretching to the right. When p is large (like 0.9), the distribution is left-skewed, with most probability near n. Understanding this shape helps you make quick predictions about what outcomes are likely versus rare.

Mathematical Framework

The binomial distribution has a precise formula that lets you calculate the probability of getting exactly r successes in n trials. It also has simple formulas for the expected value (mean) and standard deviation, which tell you where the distribution is centered and how spread out it is.

BINOMIAL PROBABILITY FORMULA
P(X = r) = ⁿCᵣ × pʳ × (1 − p)ⁿ⁻ʳ
n = number of trials, r = number of successes desired, p = probability of success on each trial, ⁿCᵣ = the number of combinations (also written C(n,r) or "n choose r"), calculated as n! / (r!(n − r)!)

Let's break down why this formula works. The term ⁿCᵣ counts how many different ways you can arrange r successes among n trials. For example, if you flip a coin 3 times and want exactly 2 heads, there are ³C₂ = 3 possible arrangements: HHT, HTH, or THH. The term gives the probability of those r successes actually happening, and (1 − p)ⁿ⁻ʳ gives the probability of the remaining n − r failures. Multiplying all three together gives the total probability.

EXPECTED VALUE (MEAN)
E(X) = μ = n × p
The mean tells you the average number of successes you'd expect over many repetitions of the experiment. For 10 coin flips with p = 0.5, the expected number of heads is 10 × 0.5 = 5.
STANDARD DEVIATION
σ = √(n × p × (1 − p))
The standard deviation measures how spread out the outcomes are around the mean. A larger standard deviation means the results are more variable from experiment to experiment.
📱 GDC / Calculator Tip
On your IB exam, you can use your GDC (graphing display calculator) to find binomial probabilities. Most calculators have two key functions: binompdf(n, p, r) gives P(X = r), while binomcdf(n, p, r) gives P(X ≤ r). Using the CDF function is especially useful when you need cumulative probabilities like P(X ≤ 3) or P(X ≥ 4) = 1 − P(X ≤ 3).

How Parameters Shape the Distribution

The two parameters n and p completely determine the shape, center, and spread of a binomial distribution. Changing either one transforms the probability histogram in predictable ways. The diagram below compares three binomial distributions with the same n = 10 but different values of p, so you can see exactly how the probability of success affects the distribution's shape.

Three binomial distributions with n = 10 show how the probability of success p controls the shape. The mean shifts with p, while the standard deviation is largest when p = 0.5.
How changing n and p affects the binomial distribution
ParameterEffect on DistributionExample
Increasing nDistribution becomes taller, narrower, and more bell-shaped; mean and spread both increaseB(5, 0.5) vs B(50, 0.5): mean shifts from 2.5 to 25
Increasing pDistribution shifts right; skewness changes from right-skewed to symmetric to left-skewedB(10, 0.2) is right-skewed; B(10, 0.8) is left-skewed
p = 0.5Distribution is perfectly symmetric regardless of n; standard deviation is maximizedB(10, 0.5): σ = √(10 × 0.5 × 0.5) ≈ 1.58, the largest for n = 10

Worked Example

A quality control manager inspects a batch of phone screens. Historical data shows that 8% of screens have a defect. The manager randomly selects 15 screens for inspection. Let's find several probabilities and statistics for this scenario.

Phone Screen Quality Control
1
Step 1 — Verify Binomial ConditionsCheck the four conditions: Fixed trials: n = 15 screens are inspected. Independent: each screen's quality is independent of others (random selection from a large batch). Two outcomes: defective (success) or not defective (failure). Same probability: p = 0.08 for each screen. All conditions are met, so X ~ B(15, 0.08).
X ~ B(15, 0.08)
2
Step 2 — Find P(X = 0), the probability of no defectsUsing the formula: P(X = 0) = ¹⁵C₀ × 0.08⁰ × 0.92¹⁵. We know ¹⁵C₀ = 1 and 0.08⁰ = 1, so P(X = 0) = 1 × 1 × 0.92¹⁵. Calculating: 0.92¹⁵ ≈ 0.2863.
P(X = 0) ≈ 0.286
3
Step 3 — Find P(X = 2), exactly 2 defective screensP(X = 2) = ¹⁵C₂ × 0.08² × 0.92¹³. First, ¹⁵C₂ = 15! / (2! × 13!) = (15 × 14) / (2 × 1) = 105. Then, 0.08² = 0.0064 and 0.92¹³ ≈ 0.3383. So P(X = 2) = 105 × 0.0064 × 0.3383 ≈ 0.2273.
P(X = 2) ≈ 0.227
4
Step 4 — Find P(X ≤ 2), at most 2 defective screensP(X ≤ 2) = P(X = 0) + P(X = 1) + P(X = 2). We already have P(X = 0) ≈ 0.2863 and P(X = 2) ≈ 0.2273. For P(X = 1): ¹⁵C₁ × 0.08¹ × 0.92¹⁴ = 15 × 0.08 × 0.3112 ≈ 0.3734. Adding: 0.2863 + 0.3734 + 0.2273 ≈ 0.8870. On a GDC, use binomcdf(15, 0.08, 2).
P(X ≤ 2) ≈ 0.887
5
Step 5 — Calculate the expected value and standard deviationExpected value: E(X) = n × p = 15 × 0.08 = 1.2 defective screens. Standard deviation: σ = √(n × p × (1 − p)) = √(15 × 0.08 × 0.92) = √(1.104) ≈ 1.05. This means we'd expect about 1.2 defective screens on average, with results typically varying by about 1.05 screens from that average.
E(X) = 1.2, σ ≈ 1.05

Strengths & Limitations

The binomial distribution is one of the most commonly used models in applied statistics, but like any model, it has specific strengths and limitations. Understanding when the binomial model works well — and when it breaks down — is crucial for applying it correctly in IB exam questions and in real-world scenarios.

When to use (and when not to use) the binomial distribution
StrengthsLimitations
Simple to apply — only two parameters (n and p) are neededRequires a fixed number of trials — cannot model open-ended experiments
Widely applicable to yes/no situations in medicine, business, and scienceAssumes independence — fails when outcomes influence each other (e.g., contagious disease spread)
Easy to compute with GDC functions (binompdf, binomcdf)Constant p required — not suitable when probability changes over time
Mean and standard deviation have simple, intuitive formulasOnly handles two outcomes — multi-category data needs the multinomial distribution
Can model sampling with replacement or from very large populationsSampling without replacement from small populations violates independence (use hypergeometric instead)
⚠️ WHEN DOES THE MODEL BREAK?
Before applying the binomial distribution, always ask yourself: "Are my trials truly independent, and does p really stay the same?" Imagine drawing marbles from a bag without putting them back. Each draw changes the composition of the bag, so the probability shifts with every trial. That's not binomial! Similarly, if a basketball player's confidence grows after each successful shot, the probability isn't constant. In these cases, a different model is needed.

Connections to Other Distributions

The binomial distribution doesn't exist in isolation — it connects to several other important probability distributions that you may encounter in higher-level mathematics or other IB courses. Understanding these connections helps you see the bigger picture of probability theory and know when to switch models.

How the binomial distribution relates to other probability distributions
DistributionRelationship to BinomialWhen to Use Instead
BernoulliA binomial distribution with n = 1. It's the building block — each individual trial in a binomial experiment is a Bernoulli trial.When analyzing a single yes/no trial rather than multiple trials.
NormalWhen n is large and p is not too close to 0 or 1, the binomial distribution is well-approximated by the normal distribution N(np, np(1−p)).When n is large (typically np ≥ 5 and n(1−p) ≥ 5) and exact binomial calculations become impractical.
PoissonWhen n is very large and p is very small, the binomial can be approximated by a Poisson distribution with λ = np.When counting rare events in a large number of trials (e.g., typos per page, accidents per year).
HypergeometricModels the same type of problem as the binomial, but without replacement. Trials are not independent because each draw changes the remaining population.When sampling without replacement from a small population (e.g., selecting cards from a deck).

In your IB Mathematics: Applications and Interpretation course, the normal distribution is the most important connection to watch for. At Higher Level, you'll study the normal distribution in detail, and you'll see that the familiar bell curve is actually what a binomial distribution "grows into" when n becomes large. This remarkable result, discovered by de Moivre in the 1730s, is one of the foundations of modern statistics.

Practice Problems

PROBLEM 1CONCEPTUAL
A teacher surveys 20 students, asking each whether they prefer online or in-person learning. She records the number who prefer online learning. Explain why this could be modeled as a binomial distribution by verifying each of the four conditions.
PROBLEM 2BASIC CALCULATION
A fair six-sided die is rolled 8 times. Let X be the number of times a 6 appears. Find P(X = 2) and the expected number of sixes.
PROBLEM 3INTERMEDIATE
A multiple-choice test has 12 questions, each with 4 options (only one correct). A student guesses randomly on every question. Find: (a) the probability the student gets exactly 5 correct, (b) the probability the student gets at least 3 correct, and (c) the expected score.
PROBLEM 4APPLIED
A pharmaceutical company claims that their new vaccine is 90% effective. In a clinical trial, 20 vaccinated individuals are exposed to the virus, and 16 remain healthy. Using the binomial distribution, find the probability that 16 or fewer people remain healthy if the vaccine truly is 90% effective. Does this result cast doubt on the company's claim?
PROBLEM 5CRITICAL THINKING
A basketball player has a free-throw success rate of 75%. She shoots 10 free throws in a game. Her coach claims that she is equally likely to make exactly 7 baskets as she is to make exactly 8 baskets. Is the coach correct? Show your calculations. Then explain why the mode (most likely outcome) of a binomial distribution is not always equal to the expected value.

Lesson Summary

The binomial distribution models the number of successes in a fixed number of independent trials, each with only two outcomes and a constant probability of success p. We write X ~ B(n, p) where n is the number of trials. The probability of exactly r successes is given by P(X = r) = ⁿCᵣ × pʳ × (1 − p)ⁿ⁻ʳ, combining the number of possible arrangements with the individual probabilities. The expected value is E(X) = np and the standard deviation is σ = √(np(1 − p)).

Always verify the four conditions (FIST: Fixed n, Independent trials, two outcomes — Success/failure, same probability on each Trial) before applying the model. The shape of the distribution depends on p — symmetric when p = 0.5, right-skewed for small p, and left-skewed for large p. On your GDC, use binompdf for exact probabilities and binomcdf for cumulative probabilities. The binomial distribution connects forward to the normal distribution (as an approximation for large n) and the Poisson distribution (for rare events), making it a foundational tool in probability and statistics.

Varsity Tutors • IB Mathematics: Applications and Interpretation • Binomial Distribution — SL 4.6 Binomial distribution and applications