conditional-probability
The Problem
Three random variables from a medical diagnosis table: (test result, or ), (lumps, or ), (bumps, or ). The table gives conditional probabilities like and . I wanted to compute .
Where I Got Stuck
My first instinct: add the two finer conditionals.
Something felt wrong. These two terms are conditioned on different subsets: one on "no lumps, no bumps," the other on "no lumps, bumps." Each probability lives on its own shrunken sample space with its own denominator. Adding them makes no sense because they're fractions over different denominators, even though the denominators are invisible in the notation.
The Fix: Think in Intersections
Conditional probability shrinks the universe. When you compute , you're not asking "how likely is A?" You're asking "inside the region, what fraction is also in ?"
Divide top and bottom by to get .
Every conditional probability computation reduces to this: find the intersection, divide by the shrunken universe.
Same Intersection, Different Denominator
and both use the same intersection . The only difference is which circle becomes the denominator.
So when you know and need , you're not starting over. You're reusing the same intersection over a different base.
Expanding the Denominator
To compute , write everything as intersections:
The denominator breaks the condition into mutually exclusive pieces: the part overlapping , and the part that doesn't.
Dividing by :
This is the strategy. Always decompose into intersections first. Never add conditional probabilities directly.
The Bridge
You usually don't have directly. Compute it from the reverse conditional:
Multiplying (which lives on the shrunken -universe) by ('s share of the full universe) gives you the intersection's size in the full sample space. Same for the other piece: .
Substituting:
That's Bayes' theorem. But I don't memorize it as a formula. The recipe is: expand into intersections, compute each intersection as reverse-conditional prior.
Why the Naive Addition Failed
Back to the original problem. I wanted and tried adding .
The correct version is a weighted sum:
Each conditional gets multiplied by the fraction of the universe it covers. The naive addition assumed both weights are 1, but they must sum to 1. The answer would only be correct if , meaning bumps never occur without lumps.