Understanding Event Probability
Probability quantifies the likelihood of an outcome relative to all possible outcomes. For a fair six-sided die, rolling a 3 has probability 1/6 ≈ 0.167, because exactly one favorable result exists among six equally likely possibilities. This ratio framework extends to compound events—situations involving two or more outcomes.
When analysing "A or B" scenarios, you must distinguish between three cases:
- Independent events: occurrence of one does not affect the other (e.g., two separate dice rolls).
- Mutually exclusive events: only one can happen at a time (e.g., heads or tails on a single coin toss).
- Dependent events: one outcome influences the probability of the other (e.g., drawing cards without replacement).
The calculation method depends on which case applies.
Union and Intersection Formulas
The core formula for "A or B" probability combines the individual probabilities and subtracts their intersection (the overlap) to avoid double-counting:
P(A ∪ B) = P(A) + P(B) − P(A ∩ B)
P(A ∩ B) = P(A) × P(B) [for independent events]
P(A ∆ B) = P(A) × (1 − P(B)) + P(B) × (1 − P(A)) [exclusive-or]
P(A' ∪ B') = (1 − P(A)) × (1 − P(B)) [neither A nor B]
P(A)— Probability that event A occursP(B)— Probability that event B occursP(A ∩ B)— Probability that both A and B occur (intersection)P(A ∪ B)— Probability that A, B, or both occur (union)P(A ∆ B)— Probability that exactly one of A or B occurs (symmetric difference)P(A')— Probability that A does not occur (complement)
Independent vs. Mutually Exclusive Events
Independent events share no logical connection. Rolling a die and flipping a coin are independent; the die result cannot influence the coin. For independent A and B, multiply their individual probabilities to find the intersection: P(A ∩ B) = P(A) × P(B).
Mutually exclusive events cannot both happen in a single trial. A coin cannot land heads and tails simultaneously. When events are mutually exclusive, P(A ∩ B) = 0, so the union formula simplifies to: P(A ∪ B) = P(A) + P(B).
A practical example: drawing a single card from a deck. Getting an ace and a king in one draw is mutually exclusive (probability = 0). Drawing a heart and a face card in one draw is not mutually exclusive, because face cards include hearts.
Real-World Application: Quality Control Example
A manufacturing facility tests components for two defect types. Defect A (dimensional) occurs in 4% of units; defect B (surface finish) in 6%. Assuming independence, what is the probability a unit has at least one defect?
First, calculate the intersection: P(A ∩ B) = 0.04 × 0.06 = 0.0024. Then apply the union formula: P(A ∪ B) = 0.04 + 0.06 − 0.0024 = 0.0976, or approximately 9.76%. This means roughly 9.76% of units require rework, while 90.24% pass inspection.
The complement tells you another story: P(neither defect) = (1 − 0.04) × (1 − 0.06) = 0.96 × 0.94 = 0.9024, confirming that 90.24% are defect-free—consistent with the union result.
Common Pitfalls and Considerations
Avoid these frequent errors when calculating OR probabilities.
- Forgetting to subtract the intersection — The most common mistake is adding P(A) + P(B) without subtracting P(A ∩ B). This double-counts cases where both events occur. The formula P(A ∪ B) = P(A) + P(B) − P(A ∩ B) corrects this. Only when events are mutually exclusive (overlap is zero) can you simply add.
- Confusing independence with mutual exclusivity — Independent events can both occur; mutually exclusive events cannot. Rolling a 6 on die one and a 6 on die two are independent (both can happen). Rolling a 6 and a 5 on the same die are mutually exclusive (impossible simultaneously). Misidentifying the relationship leads to incorrect probability calculations.
- Applying the wrong formula to dependent events — If event B's probability changes based on whether A occurred, you cannot use P(A ∩ B) = P(A) × P(B). You need conditional probability: P(A ∩ B) = P(A) × P(B|A). This arises often in sampling without replacement, clinical diagnosis, and insurance claims.
- Neglecting complements in multi-step problems — For questions like "What is the probability of at least one success?", computing P(at least one) = 1 − P(none) is often simpler than summing multiple cases. The complement formula P(A') = 1 − P(A) is your friend when dealing with "at least" scenarios.