Combinations of Random Variables
Revise Combinations of Random Variables for Further Mathematics — revision notes and instant AI marking. Free to start.
Combinations of Random Variables
Big idea: if you add or subtract normal random variables (each multiplied by a number), the result is STILL normal — you just add up the new means and, separately, add up the new variances (never standard deviations directly).
Summary — What This Chapter Is Really About
- You already know E(X+Y) = E(X)+E(Y) and similar rules for expectation — this chapter reuses them.
- For independent variables, variances always add — even when you're subtracting the variables themselves.
- If X and Y are each normally distributed and independent, then aX + bY (or aX − bY) is also normally distributed.
- The new normal distribution's mean and variance are found using simple formulas — then you standardise with Z exactly like any other normal distribution question.
- When you add several copies of the same distribution (like 7 identical bags of sugar), there's a shortcut: just multiply the mean and variance by n.
- The single biggest exam trap: mixing up variance and standard deviation when combining. This chapter is built almost entirely around avoiding that one mistake.
1. Combining Random Variables — The Expectation Rules
Let's start with something you've seen before, just to warm up. If X and Y are any two random variables (they don't even need to be independent, and they don't even need to be normal), then expectation behaves exactly like you'd hope — it's "linear," meaning it distributes nicely over addition, subtraction, and multiplication by constants.
2. Combining Random Variables — The Variance Rules (the important one)
This is where people trip up, so slow down here. Variance rules only work this simply when X and Y are independent — meaning the outcome of one doesn't affect or relate to the outcome of the other (e.g. the mass of an apple and the mass of an orange in the same bag are independent; your maths score and your physics score on the same day probably aren't).
Why does "a" become "a²"? Because variance measures spread using squared deviations from the mean. If you scale every possible outcome of X by a, you scale the spread by a too — but since variance is already a squared quantity, that scaling factor gets squared as well. This is exactly the same idea as Var(aX) = a²Var(X), which you'll have met before this chapter.
3. Combining Two Normal Distributions
Here's the big result of this chapter. Suppose X ~ N(μ₁, σ₁²) and Y ~ N(μ₂, σ₂²), and X and Y are independent. Then any linear combination aX + bY (or aX − bY) is also normally distributed. You find its mean using the expectation rules from Section 1, and its variance using the variance rules from Section 2 — then you just plug both into a new normal distribution.
Worked Example — Full Method
X ~ N(68, 5) and Y ~ N(82, 10) are independent. Let C = 2X + Y. Find P(C < 176).
| Step 1 — Find the mean of C | E(C) = 2(68) + 1(82) = 136 + 82 = 218 |
| Step 2 — Find the variance of C | Var(C) = 2²(5) + 1²(10) = 20 + 10 = 30 |
| Step 3 — Write the new distribution | C ~ N(218, 30) |
| Step 4 — Standardise using Z | Z = (176 − 218) / √30 = −7.667 |
| Step 5 — Use the normal tables / calculator | P(C < 176) = P(Z < −7.667) ≈ 0.0000 (essentially 0, since 176 is over 7 standard deviations below the mean) |
Note: this uses the same numbers as the classic "Example 1" from the PMT notes, but done fully correctly end-to-end — always divide by the square root of the variance to get the standard deviation before you standardise.
The independent random variables X and Y have distributions X ~ N(40, 6) and Y ~ N(55, 9). Let W = 3X − 2Y. Find the distribution of W, and hence find P(W > 10).
The mean mass of a small cake is 60g (σ = 3g) and the mean mass of a large cake is 150g (σ = 6g), independently. A gift box contains 2 small cakes and 1 large cake. Find the probability that the box (cakes only) weighs less than 260g.
4. The "Difference" Trick — Turning P(3X > Y) into a Single Distribution
A very common exam phrasing is something like "find P(3X > Y)" instead of directly asking about a combined variable. This looks unfamiliar, but it's just Section 3 in disguise. The trick: rearrange the inequality so everything is on one side, turning it into a statement about a single new variable.
Worked Example
X ~ N(16, 3) and Y ~ N(41, 4) are independent. Find P(3X > Y).
| Step 1 — Rearrange | P(3X > Y) = P(3X − Y > 0) |
| Step 2 — Define D = 3X − Y | μ_D = 3(16) − 41 = 48 − 41 = 7 |
| Step 3 — Find variance | σ²_D = 3²(3) + 1²(4) = 27 + 4 = 31 |
| Step 4 — Write distribution | D ~ N(7, 31) |
| Step 5 — Standardise | Z = (0 − 7) / √31 = −1.257 |
| Step 6 — Read from tables | P(D > 0) = P(Z > −1.257) = 0.8962 |
Independent variables X ~ N(20, 5) and Y ~ N(35, 8). Find P(2X < Y − 3).
5. Combining Several Copies of the SAME Distribution
Sometimes every variable you're adding comes from the identical distribution — like 7 randomly chosen bags of flour all drawn from the same population, X ~ N(58, 4). Instead of writing out the full sum formula seven times, there's a shortcut: multiply the mean by n, and multiply the variance by n (not by n²! — this is different from multiplying a single variable by a constant).
• Sum of n independent copies: ∑Xᵢ ~ N(nμ, nσ²) — variance multiplies by n.
• One single X scaled by n: nX ~ N(nμ, n²σ²) — variance multiplies by n².
Ask yourself: "am I picking n different random items, or taking one random item and multiplying its value by n?" That answer tells you which formula to use.
Worked Example
X₁, X₂, ..., X₇ all have distribution X ~ N(58, 4), independently. Find the distribution of R = ∑Xᵢ (i = 1 to 7).
| Step 1 — Multiply mean by n = 7 | Mean = 7 × 58 = 406 |
| Step 2 — Multiply variance by n = 7 | Variance = 7 × 4 = 28 |
| Step 3 — Write distribution | R ~ N(406, 28) |
The volume of soft drink in a can is X ~ N(330, 6), independently between cans. A pack contains 12 cans. Find the probability the total volume in the pack exceeds 4000ml.
What to Memorise
| Rule | Formula |
|---|---|
| Expectation, addition/subtraction | E(aX ± bY) = aE(X) ± bE(Y) |
| Variance, independent variables | Var(aX ± bY) = a²Var(X) + b²Var(Y) (always +) |
| Combining two independent normals | aX ± bY ~ N(aμ₁ ± bμ₂, a²σ₁² + b²σ₂²) |
| Sum of n independent identical normals | ∑Xᵢ ~ N(nμ, nσ²) |
| One variable scaled by n (different!) | nX ~ N(nμ, n²σ²) |
| Rearranging inequalities | P(X > Y) = P(X − Y > 0) |
| N(μ, σ²) notation | Second value is always variance, not SD — square root it before standardising |
Concepts Checklist
Exam Tips — Where Marks Are Lost
- 4. The "Difference" Trick — Turning P(3X > Y) into a Single Distribution
Read the full Combinations of Random Variables notes free
That's the preview — create a free account to read the rest, plus flashcards and practice questions with instant AI marking. No credit card.
Unlock the full notes free →