14.3 Probability Spaces, Conditional Probability, and Bayes' Theorem
Key Takeaways
- Probability spaces (Omega, F, P) satisfy Kolmogorov's axioms, guaranteeing countable additivity for disjoint events, monotonicity P(A) <= P(B) whenever A subseteq B, and Boole's union bound P(union A_i) <= sum P(A_i).
- Two events A and B with non-zero probabilities are mutually exclusive if A cap B = emptyset, which fundamentally precludes them from being independent because P(A cap B) = 0 != P(A)P(B).
- Pairwise independence among three or more events does not imply mutual (joint) independence; verifying full independence requires testing all subset intersections.
- The Law of Total Probability partitions a sample space into disjoint events B_i to express P(A) = sum_{i=1}^n P(A | B_i)P(B_i), forming the denominator of Bayes' Theorem.
- Bayes' Theorem updates prior probabilities with experimental evidence via P(B_k | A) = [P(A | B_k) P(B_k)] / sum P(A | B_i) P(B_i); when the prior is rare, high sensitivity and specificity can still produce a low posterior positive predictive value.
14.3 Probability Spaces, Conditional Probability, and Bayes' Theorem
Probability on the GRE Mathematics Subject Test evaluates Kolmogorov's axiomatic framework, conditional probability, algebraic independence, the Law of Total Probability, and Bayesian inference. Precise handling of conditional spaces, event partitions, and prior-to-posterior probability updates is essential for success.
Axiomatic Probability Spaces
A formal probability model is a triple $(\Omega, \mathcal{F}, P)$:
- Sample Space $\Omega$: The set of all possible outcomes.
- $\sigma$-Algebra $\mathcal{F}$: A collection of events containing $\Omega$, closed under complementation ($A \in \mathcal{F} \implies A^c \in \mathcal{F}$) and countable unions ($\bigcup_{i=1}^\infty A_i \in \mathcal{F}$).
- Probability Measure $P$: A function $P: \mathcal{F} \to [0, 1]$ satisfying Kolmogorov's Axioms:
- Non-negativity: $P(A) \ge 0$ for all $A \in \mathcal{F}$.
- Normalization: $P(\Omega) = 1$.
- Countable Additivity: For pairwise disjoint events ${A_i}{i=1}^\infty$, $P\left(\bigcup{i=1}^\infty A_i\right) = \sum_{i=1}^\infty P(A_i)$.
Derived Properties
- $P(\emptyset) = 0$ and $P(A^c) = 1 - P(A)$
- Monotonicity: $A \subseteq B \implies P(A) \le P(B)$ and $P(B \setminus A) = P(B) - P(A)$
- Inclusion-Exclusion: $P(A \cup B) = P(A) + P(B) - P(A \cap B)$
- Boole's Inequality (Union Bound): $P\left(\bigcup_{i=1}^n A_i\right) \le \sum_{i=1}^n P(A_i)$
- Continuity of Measure: If $A_n \uparrow A$, then $\lim P(A_n) = P(A)$; if $A_n \downarrow A$, then $\lim P(A_n) = P(A)$.
Conditional Probability and the Chain Rule
For events $A, B$ with $P(B) > 0$, the conditional probability of $A$ given $B$ is: The conditional measure $P(\cdot \mid B)$ is a valid probability measure satisfying all Kolmogorov axioms.
Multiplication (Chain) Rule
For $n$ events with $P(A_1 \cap \dots \cap A_{n-1}) > 0$:
Independent Events vs. Mutually Exclusive Events
| Feature | Independent Events | Mutually Exclusive (Disjoint) Events |
|---|---|---|
| Definition | $P(A \cap B) = P(A) P(B)$ | $A \cap B = \emptyset \implies P(A \cap B) = 0$ |
| Conditioning | $P(A \mid B) = P(A)$ | $P(A \mid B) = 0$ |
| Simultaneity | Can occur simultaneously | Cannot occur simultaneously |
| Compatibility | If $P(A) > 0, P(B) > 0$, disjoint events are never independent ($0 \neq P(A)P(B)$). | Direct contradiction with independence |
Pairwise vs. Mutual Independence
Events ${A_1, \dots, A_n}$ are mutually independent if for every non-empty sub-index set $J \subseteq {1, \dots, n}$: Pairwise independence ($P(A_i \cap A_j) = P(A_i)P(A_j)$ for all $i \neq j$) does not imply mutual independence. A classic counterexample is two fair coin tosses where $A$ is heads on toss 1, $B$ is heads on toss 2, and $C$ is both tosses match.
Law of Total Probability
If events ${B_1, \dots, B_n}$ form a partition of $\Omega$ (disjoint with $\bigcup B_i = \Omega$ and $P(B_i) > 0$), then for any event $A$:
Bayes' Theorem and Posterior Calculations
Bayes' Theorem updates prior probabilities $P(B_k)$ to posterior probabilities $P(B_k \mid A)$ upon observing evidence $A$:
- Prior $P(B_k)$: Baseline probability before evidence $A$.
- Likelihood $P(A \mid B_k)$: Probability of evidence given state $B_k$.
- Posterior $P(B_k \mid A)$: Updated belief given evidence $A$.
Diagnostic Testing and the Base Rate Fallacy
- Sensitivity: $P(+ \mid \text{Disease}) = 1 - \text{False Negative Rate}$
- Specificity: $P(- \mid \text{Healthy}) = 1 - \text{False Positive Rate}$
- Positive Predictive Value (PPV): When prevalence $P(\text{Disease})$ is rare, false positives from the large healthy subpopulation can swamp true positives, resulting in a low PPV despite high test accuracy.
Step-by-Step Worked Problem
Problem: Box 1 has 4 green and 2 yellow balls. Box 2 has 3 green and 5 yellow balls. A die is rolled: if 1 or 2 appears, Box 1 is chosen; otherwise, Box 2 is chosen. Two balls are drawn without replacement, and both are green ($GG$). Find $P(B_1 \mid GG)$.
Solution:
- Priors: $P(B_1) = 2/6 = 1/3$ and $P(B_2) = 4/6 = 2/3$.
- Likelihoods:
- Box 1 (total 6): $P(GG \mid B_1) = \binom{4}{2} / \binom{6}{2} = 6/15 = 2/5$.
- Box 2 (total 8): $P(GG \mid B_2) = \binom{3}{2} / \binom{8}{2} = 3/28$.
- Law of Total Probability:
- Bayes' Theorem:
GRE Exam Traps & Pitfalls
Trap 1: Confusing Independence with Disjointness Disjoint events satisfy $P(A \cap B) = 0$. For events with positive probability, $P(A)P(B) > 0 \neq 0$, making disjoint events strictly dependent.
Trap 2: Transposing Conditionals (Prosecutor's Fallacy) Never equate $P(A \mid B)$ with $P(B \mid A)$. Conflating sensitivity $P(+ \mid \text{Disease})$ with posterior $P(\text{Disease} \mid +)$ ignores the prior base rate.
Trap 3: Pairwise vs. Mutual Independence Checking that all pairs satisfy $P(A_i \cap A_j) = P(A_i)P(A_j)$ does not verify full independence. Complete independence requires all higher-order subset products to hold.
Trap 4: Omitting Shift in Without-Replacement Likelihoods When sampling without replacement, conditional probabilities shift after each draw ($4/6 \times 3/5$). Applying independent product probabilities produces wrong likelihoods.
A rare genetic condition affects 0.1% (1 in 1,000) of a population. A diagnostic test for the condition has a sensitivity (true positive rate) of 98% and a false positive rate of 2% (specificity of 98%). If a randomly chosen person tests positive, what is the posterior probability that they actually have the condition?
Two fair coins are tossed independently. Let event A be 'the first coin is Heads', event B be 'the second coin is Heads', and event C be 'both coins show the same outcome (both Heads or both Tails)'. Which of the following correctly describes the relationship among events A, B, and C?
Urn I contains 3 red and 7 white balls. Urn II contains 8 red and 2 white balls. A fair die is rolled: if a 1 or 2 appears, a ball is drawn at random from Urn I; otherwise (if 3, 4, 5, or 6 appears), a ball is drawn at random from Urn II. Given that the drawn ball is red, what is the probability that it came from Urn I?