9.3 Compound Probability: Addition Rule, Multiplication Rule & Conditional Probability
Key Takeaways
- The General Addition Rule calculates the union of two events: $P(A \cup B) = P(A) + P(B) - P(A \cap B)$; for mutually exclusive (disjoint) events where $P(A \cap B) = 0$, this simplifies to $P(A \cup B) = P(A) + P(B)$.
- Two events $A$ and $B$ are statistically independent if and only if $P(A \cap B) = P(A) \cdot P(B)$, or equivalently $P(B|A) = P(B)$; if the occurrence of $A$ alters the likelihood of $B$, the events are dependent.
- The General Multiplication Rule calculates joint intersections: $P(A \cap B) = P(A) \cdot P(B|A)$, accounting for changing sample spaces in sampling without replacement.
- Conditional Probability evaluates the probability of event $B$ given that event $A$ has already occurred: $P(B|A) = \frac{P(A \cap B)}{P(A)}$ for $P(A) > 0$, restricting the effective sample space entirely to subset $A$.
- Multi-stage conditional probabilities and Bayesian-style updates are most reliably solved on the CLEP exam by structuring data into Two-Way Contingency Tables or Tree Diagrams.
9.3 Compound Probability: Addition Rule, Multiplication Rule & Conditional Probability
Compound probability examines situations where two or more individual events combine. On the CLEP College Mathematics examination, mastering compound events requires distinguishing between unions ("$A$ OR $B$"), which use the Addition Rule, and intersections ("$A$ AND $B$"), which use the Multiplication Rule.
Furthermore, understanding how previous occurrences alter the available sample space—known as Conditional Probability ($P(B|A)$)—is essential for analyzing two-way contingency tables and multi-stage tree diagrams.
1. The Addition Rule for Unions ($A$ OR $B$)
The union of two events $A$ and $B$, denoted $A \cup B$, represents the event that event $A$ occurs, event $B$ occurs, or both occur.
+-----------------------------------------------------------------------------+
| THE GENERAL ADDITION RULE |
| |
| +---------------------------------------------------------------------+ |
| | SAMPLE SPACE S | |
| | | |
| | +-----------------+ +-----------------+ | |
| | | EVENT A | | EVENT B | | |
| | | | | | | |
| | | +----+-----+---+ | | |
| | | | A INTERSECT B| | | |
| | | | P(A and B) | | | |
| | +------------+--------------+-------------+ | |
| | | |
| +---------------------------------------------------------------------+ |
| |
| P(A U B) = P(A) + P(B) - P(A INTERSECT B) |
+-----------------------------------------------------------------------------+
The General Addition Rule Formula
For any two events $A$ and $B$ within sample space $S$:
Why subtract $P(A \cap B)$? When adding $P(A)$ and $P(B)$, the overlapping outcomes that belong to both $A$ and $B$ ($A \cap B$) are counted twice. Subtracting $P(A \cap B)$ once corrects for this double counting.
Mutually Exclusive (Disjoint) Events
Two events $A$ and $B$ are mutually exclusive (disjoint) if they cannot occur simultaneously ($A \cap B = \emptyset$). In this case, their intersection has probability zero:
Worked Example 1: Non-Mutually Exclusive Deck Selection
Problem: A card is drawn from a standard 52-card deck. What is the probability that the card is a Queen or a Diamond?
Solution:
- Identify individual event probabilities:
- Let $Q$ = event card is a Queen $\implies n(Q) = 4 \implies P(Q) = \frac{4}{52}$.
- Let $D$ = event card is a Diamond $\implies n(D) = 13 \implies P(D) = \frac{13}{52}$.
- Identify the intersection (overlap):
- $Q \cap D$ = Queen of Diamonds $\implies n(Q \cap D) = 1 \implies P(Q \cap D) = \frac{1}{52}$.
- Apply the General Addition Rule:
2. Independent vs. Dependent Events & The Multiplication Rule ($A$ AND $B$)
The intersection of two events $A$ and $B$, denoted $A \cap B$, represents the joint event that both event $A$ and event $B$ occur simultaneously or sequentially.
+-----------------------------------------------------------------------------+
| INDEPENDENT VS. DEPENDENT EVENTS |
| |
| INDEPENDENT EVENTS: |
| - The occurrence of event A does NOT change the probability of event B. |
| - Formal Condition: P(B | A) = P(B) or P(A n B) = P(A) * P(B) |
| - Common context: Sampling WITH replacement, separate dice/coin tosses. |
| |
| DEPENDENT EVENTS: |
| - The occurrence of event A ALTERS the probability of event B. |
| - Formal Condition: P(B | A) != P(B) => P(A n B) = P(A) * P(B | A) |
| - Common context: Sampling WITHOUT replacement, sequential draws. |
+-----------------------------------------------------------------------------+
The Multiplication Rule Formulas
- For Independent Events:
- For Dependent Events (General Multiplication Rule):
Where $P(B \mid A)$ represents the conditional probability of event $B$ occurring given that event $A$ has already occurred.
Worked Example 2: Sampling With vs. Without Replacement
Problem: A jar contains $6$ red marbles and $4$ blue marbles ($10$ marbles total). Two marbles are drawn sequentially. Find the probability that both marbles are red:
- If the first marble is replaced before drawing the second marble (with replacement).
- If the first marble is not replaced (without replacement).
Solution:
- With Replacement (Independent):
- First draw: $P(R_1) = \frac{6}{10} = \frac{3}{5}$.
- Second draw: $P(R_2) = \frac{6}{10} = \frac{3}{5}$.
- $P(R_1 \cap R_2) = P(R_1) \times P(R_2) = \frac{6}{10} \times \frac{6}{10} = \frac{36}{100} = \frac{9}{25} = 0.36$.
- Without Replacement (Dependent):
- First draw: $P(R_1) = \frac{6}{10} = \frac{3}{5}$.
- Second draw: Given that $1$ red marble was removed, $5$ red marbles remain out of $9$ total marbles: $P(R_2 \mid R_1) = \frac{5}{9}$.
- $P(R_1 \cap R_2) = P(R_1) \times P(R_2 \mid R_1) = \frac{6}{10} \times \frac{5}{9} = \frac{30}{90} = \frac{1}{3} \approx 0.3333$.
3. Conditional Probability Mechanics
Conditional probability calculates the likelihood of an event $B$ occurring under the restrictive condition that another event $A$ has already occurred. In essence, conditioning on $A$ shrinks the sample space from the universal space $S$ down to the restricted subset $A$.
+-----------------------------------------------------------------------------+
| CONDITIONAL PROBABILITY MODEL |
| |
| +---------------------------------------------------------------------+ |
| | ORIGINAL SAMPLE SPACE S | |
| | | |
| | +-----------------------------------+ | |
| | | NEW REDUCED SAMPLE SPACE: A | | |
| | | | | |
| | | +-----------------------+--+ | |
| | | | FAVORABLE REGION: | | | |
| | | | A INTERSECT B | | (Outside of A | |
| | | +-----------------------+--+ is discarded) | |
| | +-----------------------------------+ | |
| +---------------------------------------------------------------------+ |
| |
| P(B | A) = P(A n B) / P(A) |
+-----------------------------------------------------------------------------+
The Conditional Probability Formula
For any two events $A$ and $B$ with $P(A) > 0$:
Worked Example 3: Die Roll Conditioning
Problem: A standard fair 6-sided die is rolled once. Given that the roll resulted in an odd number, what is the conditional probability that the number rolled is a prime number?
Solution:
- Define the full sample space: $S = {1, 2, 3, 4, 5, 6}$ ($n(S) = 6$).
- Define the given condition event $A$ (Odd number): $A = {1, 3, 5} \implies n(A) = 3$.
- Define the target event $B$ (Prime number): $B = {2, 3, 5}$.
- Find the intersection $A \cap B$ (Odd and Prime): $A \cap B = {3, 5} \implies n(A \cap B) = 2$.
- Compute conditional probability:
4. Two-Way Contingency Table Analysis
A two-way contingency table organizes observed bivariate data across two categorical variables, providing the clearest format for evaluating marginal, joint, and conditional probabilities.
Sample Contingency Table: Academic Major vs. Internship Status
A survey evaluates $200$ university seniors regarding their degree program and whether they completed a professional internship:
| Degree Category | Completed Internship ($I$) | No Internship ($I'$) | Total Marginal Row |
|---|---|---|---|
| Business ($B$) | $70$ | $30$ | $100$ |
| STEM ($T$) | $50$ | $10$ | $60$ |
| Humanities ($H$) | $20$ | $20$ | $40$ |
| Total Column | $140$ | $60$ | Grand Total = $200$ |
Types of Probabilities Derived from Contingency Tables
- Marginal Probability (Single Variable Total / Grand Total):
- Probability a randomly selected student is a Business major:
- Probability a randomly selected student completed an internship:
- Joint Probability (Intersection Cell / Grand Total):
- Probability a student is a STEM major AND completed an internship:
- Conditional Probability (Intersection Cell / Conditioning Row or Column Total):
- Given that a student is a Business major, what is the probability they completed an internship?
- Given that a student completed an internship, what is the probability they are a STEM major?
5. Multi-Stage Modeling with Tree Diagrams
A tree diagram visualizes multi-stage sequential probabilistic processes. By displaying branches for each stage:
- Branch probabilities represent conditional probabilities $P(B \mid A)$.
- Multiplying along a branch path calculates the joint intersection probability: $P(A \cap B) = P(A) \times P(B \mid A)$.
- Summing distinct path probabilities calculates the total probability of an outcome via the Law of Total Probability.
+-----------------------------------------------------------------------------+
| TREE DIAGRAM BRANCH MECHANICS |
| |
| +---> Defective (0.02) ===> P(M1 n D) = 0.012 |
| | |
| +---> Machine 1 (0.60)+ |
| | +---> Non-Defect (0.98) ===> P(M1 n D') = 0.588 |
| | |
| | |
| +---> Machine 2 (0.40)+---> Defective (0.05) ===> P(M2 n D) = 0.020 |
| | |
| +---> Non-Defect (0.95) ===> P(M2 n D') = 0.380 |
| |
| Total Defective Probability P(D) = 0.012 + 0.020 = 0.032 |
+-----------------------------------------------------------------------------+
Worked Example 4: Factory Quality Control & Bayesian Inference
Problem: A manufacturing plant produces parts using two machines. Machine 1 produces $60%$ of total output ($P(M_1) = 0.60$) with a $2%$ defect rate ($P(D \mid M_1) = 0.02$). Machine 2 produces $40%$ of output ($P(M_2) = 0.40$) with a $5%$ defect rate ($P(D \mid M_2) = 0.05$).
- What is the overall probability that a randomly chosen manufactured part is defective ($P(D)$)?
- If a randomly selected part is found to be defective, what is the probability that it was produced by Machine 2 ($P(M_2 \mid D)$)?
Solution:
- Total Probability of Defect ($P(D)$):
- Path 1 (Machine 1 and Defective): $P(M_1 \cap D) = 0.60 \times 0.02 = 0.012$.
- Path 2 (Machine 2 and Defective): $P(M_2 \cap D) = 0.40 \times 0.05 = 0.020$.
- $P(D) = P(M_1 \cap D) + P(M_2 \cap D) = 0.012 + 0.020 = 0.032 = 3.2%$.
- Conditional Bayesian Probability ($P(M_2 \mid D)$):
6. TI-30XS MultiView Calculator Keystrokes
+-----------------------------------------------------------------------------+
| COMPOUND PROBABILITY EVALUATION ON TI-30XS |
| |
| - Addition Rule: 120 / 200 + 90 / 200 - 50 / 200 [enter] |
| - Tree Multiplication: 0.40 * 0.05 [enter] -> yields 0.02 |
| - Conditional Ratio: ( 0.020 ) / ( 0.032 ) [enter] [<>] -> yields 5/8 |
+-----------------------------------------------------------------------------+
7. Common CLEP Traps & Strategic Checkpoints
- Trap 1: Confusing Mutually Exclusive with Independent: Mutually exclusive events cannot occur together ($P(A \cap B) = 0$). Independent events satisfy $P(A \cap B) = P(A) \cdot P(B)$. Two events with positive probabilities cannot be both mutually exclusive and independent!
- Trap 2: Forgetting to Subtract the Intersection in Unions: In $P(A \cup B)$, never write $P(A) + P(B)$ unless you have verified that the events are mutually exclusive.
- Trap 3: Inverting the Conditional Probability Denominator: In $P(B \mid A)$, the conditioning event $A$ (after the vertical bar) must be in the denominator: $P(B \mid A) = \frac{P(A \cap B)}{P(A)}$. Writing $\frac{P(A \cap B)}{P(B)}$ evaluates $P(A \mid B)$, which is a completely different quantity.
A survey of 200 college students found that 120 take Mathematics, 90 take Physics, and 50 take both Mathematics and Physics. If a student is selected at random from this group, what is the probability that the student takes Mathematics, Physics, or both?
In a medical trial of 500 patients, 150 patients received Treatment A and 350 received Treatment B. Among those receiving Treatment A, 120 recovered. Among those receiving Treatment B, 210 recovered. If a randomly selected patient from the trial is known to have recovered, what is the probability that this patient received Treatment A?
Suppose events A and B are independent, with P(A) = 0.40 and P(B) = 0.30. What is the probability that neither event A nor event B occurs, P(A' ∩ B')?