"The arithmetic of probability is multiplication, not addition. Addition is for things that can't both happen. Multiplication is for things that can."
Three Words That Look Similar and Mean Three Different Things
Three words show up in every probability sentence and most readers blur them:
- Marginal — P(A) on its own. The probability of A ignoring everything else. "What fraction of people are over 60?"
- Joint — P(A and B). The probability of both A and B happening together. "What fraction of people are over 60 AND have had a heart attack?"
- Conditional — P(A | B). Probability of A inside the universe where B is true. "Among people over 60, what fraction have had a heart attack?"
Three different questions. Three different numbers. They are linked by one identity: P(A and B) = P(A | B) × P(B). The joint is the conditional times the marginal of the condition.
The 'OR' Versus 'AND' Trap
The citizen mistake is reaching for addition when the event is a conjunction. "It will probably rain (60%) AND I'll probably forget my umbrella (30%), so the chance of getting wet is 60% + 30% = 90%." Wrong on two counts.
For an AND (joint), you multiply. If those two were independent: 0.60 × 0.30 = 0.18. There's an 18% chance of both, not 90%.
For an OR (union), you add — and then you subtract the overlap so you don't count it twice. P(A or B) = P(A) + P(B) − P(A and B).
The intuition trap is the word 'and' sounding like 'sum' in English. It is not. In probability, AND is product (with a conditional twist when events aren't independent); OR is sum-minus-overlap.
The Chain Rule — Joint When Things Aren't Independent
When A and B are independent, P(A and B) = P(A) × P(B). Clean.
When they're not — which, as the previous lesson reminded us, is most of the time — you need the chain rule: P(A and B) = P(A | B) × P(B). Read it as: "first you survived the B-event, with probability P(B); then, given you survived, A happens with probability P(A | B)". The chain rule is conditional probability being honest about the coupling.
Two Coins Are Not One Coin Twice
Where This Matters Soon
The likelihood function in Bayes' rule is exactly a joint probability of many observations, computed by multiplying conditionals. Maximum likelihood estimation, the workhorse of modern statistics and machine learning, is the art of choosing a hypothesis that maximizes one big joint probability. If you can multiply correctly here, you can read a likelihood. If you can't, you'll get every later technique wrong on the inside while the outside looks fine.