Skip to content

9709 · 6.2

Linear combinations of random variables — FAQ

Frequently asked questions for 9709 Linear combinations of random variables. Direct answers first, then deeper explanation — then practise with marking.

Why does variance add for X - Y? It feels like it should subtract.

Variance measures uncertainty or spread. If you have two uncertain quantities, X and Y, their difference, X - Y, is also uncertain. The total uncertainty comes from the variability in both X and Y. Imagine two people trying to guess a length; the difference between their guesses is likely to be more variable than a single person's guess, not less. Mathematically, Var(XY)=Var(X+(1)Y)=Var(X)+(1)2Var(Y)=Var(X)+Var(Y)\text{Var}(X - Y) = \text{Var}(X + (-1)Y) = \text{Var}(X) + (-1)^2\text{Var}(Y) = \text{Var}(X) + \text{Var}(Y).

Do the variables have to be Normally distributed for the E(...) and Var(...) formulas to work?

No. The formulas E(aX+bY)=aE(X)+bE(Y)E(aX + bY) = aE(X) + bE(Y) and (for independent variables) Var(aX+bY)=a2Var(X)+b2Var(Y)\text{Var}(aX + bY) = a^2\text{Var}(X) + b^2\text{Var}(Y) work for any type of random variable, discrete or continuous. However, the property that the resulting distribution is also Normal only applies if the original variables X and Y were Normal.

What is the difference between finding the variance of 2X and the variance of X₁ + X₂?

This is a crucial distinction. '2X' means you take one observation of X and double its value. The variance is Var(2X)=22Var(X)=4Var(X)\text{Var}(2X) = 2^2\text{Var}(X) = 4\text{Var}(X). 'X₁ + X₂' means you take two independent observations from the same distribution and add their values. The variance is Var(X1+X2)=Var(X1)+Var(X2)=Var(X)+Var(X)=2Var(X)\text{Var}(X_1 + X_2) = \text{Var}(X_1) + \text{Var}(X_2) = \text{Var}(X) + \text{Var}(X) = 2\text{Var}(X). The variance is smaller when you combine two independent observations.