Conditional Probability and Bayes' Theorem for Actuaries
Learn conditional probability and Bayes' Theorem with actuarial examples for Exam P.
Conditional Probability Basics
Conditional probability measures the likelihood of event A given that event B has occurred: P(A|B) = P(A and B) / P(B), provided P(B) > 0. In insurance, this arises constantly. For example, the probability that a claim exceeds $10,000 given that it has already exceeded $5,000 is a conditional probability.
The multiplication rule follows directly: P(A and B) = P(A|B) * P(B). Two events are independent when P(A|B) = P(A), meaning knowledge of B does not change the probability of A. Independence is a key assumption in many actuarial models.
The Law of Total Probability
If B1, B2, ..., Bn form a partition of the sample space (mutually exclusive and exhaustive), then P(A) = sum of P(A|Bi) * P(Bi) for i = 1 to n. This is heavily tested on Exam P. A typical problem might partition policyholders into risk classes (low, medium, high) and ask for the overall probability of a claim.
For example, suppose 50% of drivers are low risk with P(claim) = 0.02, 30% are medium risk with P(claim) = 0.05, and 20% are high risk with P(claim) = 0.10. The overall claim probability is 0.50(0.02) + 0.30(0.05) + 0.20(0.10) = 0.045.
Bayes' Theorem
Bayes' Theorem reverses the conditioning: P(Bi|A) = P(A|Bi) * P(Bi) / P(A). Using the example above, given that a claim occurred, the probability the driver was high risk is P(claim|high) * P(high) / P(claim) = 0.10 * 0.20 / 0.045 = 0.444. This "posterior" probability is much higher than the prior 0.20, reflecting the information gained from observing a claim.
On Exam P, tree diagrams are an efficient way to organize Bayes' calculations. Draw branches for each class, then sub-branches for the event of interest, and compute posterior probabilities from the resulting products.