Question
What are mutually exclusive, independent, and exhaustive events in probability, and how do we identify which type applies in a problem?
Solution — Step by Step
Two events A and B are mutually exclusive if they cannot happen at the same time:
Example: Rolling a die — “getting 2” and “getting 5” are mutually exclusive. You cannot get both on a single roll.
For mutually exclusive events, the addition rule simplifies:
Two events A and B are independent if the occurrence of one does not affect the probability of the other:
Example: Flipping a coin and rolling a die — the coin result does not affect the die result.
Mutually exclusive and independent are NOT the same thing. In fact, if two events with non-zero probabilities are mutually exclusive, they CANNOT be independent (because if A happens, B definitely does not — knowing A affects B’s probability). This is a favourite exam trick.
A set of events is exhaustive if their union covers the entire sample space:
Example: When rolling a die, the events “getting odd” and “getting even” are exhaustive — every outcome falls into one of these.
If events are both mutually exclusive AND exhaustive, they form a partition of the sample space.
Given events A and B, ask these questions in order:
-
Can A and B happen simultaneously?
- No → Mutually exclusive ()
- Yes → Not mutually exclusive
-
Does knowing A happened change P(B)?
- No → Independent ()
- Yes → Dependent
-
Do A and B together cover all outcomes?
- Yes → Exhaustive
flowchart TD
A["Two events A and B"] --> B{"Can both occur together?"}
B -->|"No"| C["Mutually Exclusive: P of A and B = 0"]
B -->|"Yes"| D{"Does A occurring affect P of B?"}
D -->|"No"| E["Independent: P of A and B = P of A times P of B"]
D -->|"Yes"| F["Dependent: use conditional probability"]
A --> G{"Do they cover entire sample space?"}
G -->|"Yes"| H["Exhaustive: P of A or B = 1"]
G -->|"No"| I["Not exhaustive"]
Why This Works
These classifications describe different relationships between events. Mutually exclusive is about overlap (none). Independent is about influence (none). Exhaustive is about coverage (complete). A pair of events can be classified along each dimension independently — they might be exhaustive but not mutually exclusive, or mutually exclusive but not exhaustive.
Understanding which type of events you have determines which probability formula to use. Wrong classification leads to wrong formulas and wrong answers.
Alternative Method
Use a Venn diagram to visualize. Mutually exclusive events have non-overlapping circles. Independent events have overlapping circles where the overlap area equals the product of the individual areas (relative to the total). Exhaustive events have circles that together cover the entire rectangle (sample space).
Common Mistake
The biggest conceptual error: assuming mutually exclusive events are independent. If and and the events are mutually exclusive, then . But for independence we need . Since , mutually exclusive events with non-zero probabilities are always dependent. CBSE Class 12 boards test this concept as a true/false or reasoning question almost every year.