Quant Memo
Core

Independence and Product Measures

What it precisely means for two random quantities to have "nothing to do with each other," and why that precise meaning is a multiplication rule for probabilities, not just a vague intuition.

Prerequisites: Kolmogorov's Axioms of Probability

"These two stocks are unrelated" is a sentence traders say all the time, and it needs a precise mathematical meaning before you can build a portfolio model out of it. The imprecise version — "knowing one tells you nothing about the other" — is correct in spirit, but it needs to be turned into an equation before a computer can use it. That equation is a multiplication rule, and the space it lives on is called a product measure.

The analogy: two separate spinners

Picture two carnival spinners, spun independently — the result of one has no physical effect on the other. If spinner A lands on red with chance 13\tfrac13 and spinner B lands on blue with chance 14\tfrac14, common sense says the chance of "A red and B blue" should be 13×14=112\tfrac13 \times \tfrac14 = \tfrac1{12} — you multiply, you don't add, and you don't need to know anything about how A landed to answer the question about B. That multiplication instinct is exactly the formal definition of independence; nothing more mysterious is going on.

Writing it down

Two events AA and BB are independent if

P(AB)=P(A)P(B).P(A \cap B) = P(A) \, P(B) .

In words: the probability that both happen equals the product of their individual probabilities. This is not something you assume by eyeballing a situation as "unrelated" — it is a testable equation, and events can fail it even when they feel unrelated.

Two random variables XX and YY are independent if this multiplication rule holds for every pair of events they can generate — equivalently, their joint distribution factors as the product of the two marginal distributions:

fX,Y(x,y)=fX(x)fY(y)for all x,y.f_{X,Y}(x,y) = f_X(x) \, f_Y(y) \quad \text{for all } x, y .

In words: the combined density (or probability, for discrete variables) at any point splits cleanly into "how likely is XX alone" times "how likely is YY alone" — nothing about xx changes how likely yy is, and vice versa. When the underlying sample space is literally built by pairing up two separate spaces — one for XX, one for YY — with probabilities assigned exactly this multiplicatively, that combined space is called a product measure, and Fubini-Tonelli is precisely the theorem that lets you integrate over a product measure by integrating each coordinate separately.

P(X=x₁) P(X=x₂) P(Y=y₁) P(Y=y₂) product product
Under independence, each cell's probability is exactly the row height times the column width — the joint splits cleanly into a product of marginals, which is what "product measure" names.

Worked example 1: checking independence with a joint table

Roll a fair die (XX) and flip a fair coin (YY) together. P(X=3)=1/6P(X=3) = 1/6 and P(Y=heads)=1/2P(Y=\text{heads}) = 1/2. Are "X=3X=3" and "Y=headsY=\text{heads}" independent? Compute directly: there are 6×2=126 \times 2 = 12 equally likely combined outcomes, and exactly one of them is "X=3X=3 and Y=headsY=\text{heads}," so P(X=3,Y=H)=1/12P(X=3, Y=H) = 1/12. Now check the rule: P(X=3)×P(Y=H)=16×12=112P(X=3) \times P(Y=H) = \tfrac16 \times \tfrac12 = \tfrac1{12}. It matches, so the events are independent — as the physical setup (a die and a coin have no way to influence each other) suggested they should be.

Worked example 2: two variables that look unrelated but aren't

Let XX be uniform on {1,0,1}\{-1, 0, 1\} (each with probability 1/31/3) and let Y=X2Y = X^2. Compute E[X]=0E[X] = 0 and E[XY]=E[X3]=13(1)3+13(0)3+13(1)3=0E[XY] = E[X^3] = \tfrac13(-1)^3 + \tfrac13(0)^3 + \tfrac13(1)^3 = 0, so Cov(X,Y)=E[XY]E[X]E[Y]=0\text{Cov}(X,Y) = E[XY]-E[X]E[Y] = 0zero covariance, which might tempt you to call them independent. But check the actual definition: P(X=0)=1/3P(X=0) = 1/3 and P(Y=0)=P(X=0)=1/3P(Y=0) = P(X=0) = 1/3, so if independent, P(X=0,Y=0)P(X=0, Y=0) should equal 13×13=19\tfrac13 \times \tfrac13 = \tfrac19. In reality, X=0X=0 forces Y=X2=0Y=X^2=0, so P(X=0,Y=0)=1/31/9P(X=0,Y=0) = 1/3 \neq 1/9. The multiplication rule fails badly — XX and YY are strongly dependent (knowing XX tells you YY exactly), despite zero covariance.

What this means in practice

Portfolio variance formulas, joint default-probability models, and every Monte Carlo simulation that draws separate random numbers for separate risk factors all rely on the independence multiplication rule to justify treating draws as combinable via simple products or sums of variance. Getting it wrong in either direction is costly: assuming independence when there is hidden dependence (as in worked example 2) is exactly the failure mode behind the 2008 CDO mispricing of correlated mortgage defaults.

Independence means P(AB)=P(A)P(B)P(A \cap B) = P(A)P(B) for events, or fX,Y(x,y)=fX(x)fY(y)f_{X,Y}(x,y) = f_X(x)f_Y(y) for random variables — a multiplication rule for the entire joint distribution, not a vague sense of unrelatedness. A product measure is the probability space you get by pairing two independent spaces this way.

Zero correlation and independence are not the same thing. Independence implies zero correlation, but the reverse is false — worked example 2 above constructs two variables with exactly zero covariance that are nonetheless perfectly dependent (one determines the other). Checking Cov(X,Y)=0\text{Cov}(X,Y)=0 only rules out linear dependence; it says nothing about nonlinear relationships, which is why risk models that rely solely on correlation matrices can miss real, dangerous dependence between assets.

Related concepts

Practice in interviews

Further reading

  • Billingsley, Probability and Measure (ch. 2)
  • Grimmett & Stirzaker, Probability and Random Processes (ch. 1-3)
ShareTwitterLinkedIn