Events, Independence and Mutual Exclusivity
The difference between independent and mutually exclusive events — the single most common exam trap.
Assumes you know
Events, Independence and Mutual Exclusivity
Intuition first
Two words get confused more than any other pair in probability, and the confusion is costly because they mean almost opposite things.
Mutually exclusive means the two events cannot happen together. A single card cannot be both a heart and a spade.
Independent means knowing one happened tells you nothing about whether the other happened. The first coin toss landing heads tells you nothing about the second toss.
Notice these are not two flavours of the same idea. Mutually exclusive events are maximally informative about each other: if I tell you the card is a spade, you now know with certainty it is not a heart. That is the opposite of telling you nothing.
Mutually exclusive events
Events and are mutually exclusive (or disjoint) when they share no outcomes:
This is what licenses plain addition, from Axiom 3:
For one die roll, (even) and (odd) are mutually exclusive. and are not — they share and .
Independent events
Events and are independent when the probability of both occurring factorises:
This is a definition, not something you can eyeball. You verify independence by checking whether the product rule actually holds numerically.
| Symbol | Meaning | Read aloud |
|---|---|---|
| A ∩ B = ∅ | A and B are mutually exclusive — no shared outcomes | A intersect B is empty |
| P(A∩B) = P(A)P(B) | A and B are independent | factorises |
| A ⫫ B | Shorthand for 'A is independent of B' | A is independent of B |
| P(A|B) | Probability of A given that B occurred | P of A given B |
The two are almost never the same thing
Suppose and , and and are mutually exclusive. Then:
These cannot be equal, so mutually exclusive events with non-zero probability are never independent.
The only case where both hold at onceAdvanced
Both conditions require
Together these force , so at least one of the two events has probability zero. That is the sole degenerate case: an event that essentially never happens is trivially independent of everything, including events it cannot co-occur with.
So in every interesting case, the two properties are mutually exclusive properties — which is a pleasing irony.
Independence and conditional probability
Independence has an equivalent formulation that matches the intuition more directly. If :
In words: learning that happened leaves your assessment of unchanged.
Why the two definitions agreeAdvanced
The conditional probability is defined as
If and are independent, substitute :
Conversely, if , multiply both sides by :
So each statement implies the other. The product form is usually preferred as the definition because it is symmetric in and and does not require .
Solved problem 1 · Testing independence numerically
A single card is drawn from a standard 52-card deck. Let be "the card is a king" and be "the card is a heart". Are and independent? Are they mutually exclusive?
Step 1 — compute the individual probabilities
There are 4 kings and 13 hearts in 52 cards:
Step 2 — compute the joint probability directly
Exactly one card is both a king and a heart:
Since this is not zero, and are not mutually exclusive.
Step 3 — test the product rule
Compare with the actual joint probability:
The product rule holds exactly, so the events are independent.
Step 4 — sanity-check with the conditional form
Knowing the card is a heart does not change the chance it is a king — among the 13 hearts, exactly one is a king, the same rate as the full deck.
Answer
and are independent but not mutually exclusive. A deck is structured as a 4 × 13 grid, and suit tells you nothing about rank.
Solved problem 2 · Independence is destroyed by a small change
Remove the two red jacks from a standard deck, leaving 50 cards. Are (king) and (heart) still independent?
Step 1 — recount
Removing two jacks removes no kings and one heart:
Step 2 — test the product rule
, so independence fails.
Step 3 — interpret the failure
Being told the card is a heart now nudges the chance of a king upward, because the hearts suit lost a non-king card while the deck as a whole lost two.
Answer
No. Independence is a numerical coincidence of the structure, not a property of the words "rank" and "suit" — perturbing the deck breaks it.
Independence of several events
For three events, pairwise independence is not enough. Full (mutual) independence requires the product rule for every subset:
All four must hold. The first three can be satisfied while the fourth fails.
A counterexample: pairwise but not mutually independentAdvanced
Toss two fair coins. Define:
- = first coin is heads
- = second coin is heads
- = the two coins match (both heads or both tails)
Sample space , each of probability .
Check the pairs:
All three pairs are independent. Now the triple:
, so the three events are not mutually independent.
The reason is structural: any two of , , determine the third. If the first coin is heads and the coins match, the second coin must be heads — no randomness is left.
Independent versus identically distributed
You will constantly meet the phrase i.i.d. — independent and identically distributed. These are two separate claims:
- Independent: each observation carries no information about the others.
- Identically distributed: each observation is drawn from the same distribution.
Either can fail alone. Time series data is typically identically distributed but not independent (today correlates with yesterday). A dataset assembled from two different populations may have independent draws that are not identically distributed.
Exercise 1
A fair die is rolled once. Let = "the result is even" and = "the result is greater than 4". Determine whether and are independent, mutually exclusive, both, or neither.
Show solutionHide solution
, , .
Not mutually exclusive, since .
Test the product rule:
So they are independent. This surprises most people — the events feel related — which is exactly why independence must be checked numerically rather than judged by intuition.
Exercise 2
Two events satisfy , and . Are they independent?
Show solutionHide solution
First recover the joint probability from inclusion–exclusion:
Now test:
Independent.
Exercise 3
A student argues: " and are independent, so ." Give a counterexample and state the correct formula.
Show solutionHide solution
Take a fair coin tossed twice, = first is heads, = second is heads. These are independent with . The student's formula gives , claiming at least one head is certain — but occurs with probability .
The correct calculation uses inclusion–exclusion, with the overlap supplied by independence:
Independence tells you how to compute the intersection; it never removes the need to subtract it.
Next: Joint, Marginal and Conditional Probability, where conditional probability gets a proper treatment and we start reading probabilities off two-way tables.