Independent vs. Dependent Events
Understand how the probability of one event changes β or doesn't β based on whether another event already occurred.
Medical diagnostic tests, drug trial analysis, and quality control sampling all hinge on one critical question: does knowing the first result change the probability of the second? If a screening test comes back positive, what is the actual probability the patient has the disease β given the test's known error rate? If you pull a defective part from a batch, does that change the probability of the next one being defective? Understanding the difference between independent and dependent events is the gateway to conditional probability β the engine behind AI recommendation systems, spam filters, and clinical decision tools.
- Define independent and dependent events and give examples of each
- Apply the multiplication rules: \(P(A \cap B) = P(A) \cdot P(B)\) for independent events
- Calculate conditional probability \(P(B|A)\) and use it for dependent events
Check independence: if \(P(B|A) = P(B)\), the events are independent β knowing A happened tells you nothing about B.
Drawing Cards: With vs. Without Replacement
| Scenario | P(1st Ace) | P(2nd Ace) | P(both Aces) |
|---|---|---|---|
| With replacement (independent) | 4/52 | 4/52 | (4/52)Β² β 0.0059 |
| Without replacement (dependent) | 4/52 | 3/51 | (4/52)(3/51) β 0.0045 |
Without replacement: the deck shrinks, so the second draw's probability changes based on the first result.
A fair coin is flipped twice. What is the probability of getting heads both times?
Each flip is independent β the first result doesn't affect the second.
\[ P(H \cap H) = P(H) \times P(H) = \frac{1}{2} \times \frac{1}{2} = \frac{1}{4} = \mathbf{0.25} \]From a standard deck, two cards are drawn without replacement. What is the probability both are Kings?
\[ P(\text{1st King}) = \frac{4}{52} \] \[ P(\text{2nd King} \mid \text{1st was King}) = \frac{3}{51} \quad \text{(one King removed, 51 cards left)} \] \[ P(\text{both Kings}) = \frac{4}{52} \times \frac{3}{51} = \frac{12}{2652} = \frac{1}{221} \approx \mathbf{0.0045} \]A disease affects 1% of the population. A diagnostic test is 99% accurate (99% true positive rate, 1% false positive rate). A patient tests positive. What is the probability they actually have the disease?
\[ P(\text{disease}) = 0.01, \quad P(\text{positive} \mid \text{disease}) = 0.99, \quad P(\text{positive} \mid \text{no disease}) = 0.01 \] \[ P(\text{positive}) = (0.01)(0.99) + (0.99)(0.01) = 0.0099 + 0.0099 = 0.0198 \] \[ P(\text{disease} \mid \text{positive}) = \frac{0.0099}{0.0198} = \mathbf{0.50} \]Even with a 99% accurate test, a positive result in a rare-disease population is only 50% likely to be a true positive. This is why follow-up testing matters β and why base rates are critical in medical decision-making.
- A bag has 5 red and 3 blue balls. Two balls are drawn without replacement. What is P(both red)?
- Are these independent? Rolling a die and then flipping a coin.
- P(A)=0.6, P(A and B)=0.24. Find P(B|A).
βΆ Show Answers
- \(P(\text{1st red}) = 5/8\). After removing one red: \(P(\text{2nd red}) = 4/7\). Answer: \(5/8 \times 4/7 = 20/56 =\) 5/14 β 0.357.
- Yes, independent. The die outcome has no effect on the coin flip.
- \(P(B|A) = P(A \cap B)/P(A) = 0.24/0.6 =\) 0.40.
- Treating dependent events as independent: Drawing cards "without replacement" changes the denominator for each draw. If you ignore this, your combined probability will be wrong.
- Confusing "or" and "and" probabilities: P(A and B) uses multiplication. P(A or B) uses addition. Mixing them up is extremely common and leads to probabilities outside [0,1].
- Ignoring base rates: The medical test example shows that even a very accurate test can produce surprising results when the disease is rare. Always incorporate prior probability (base rate) into conditional reasoning.
- Independent events: \(P(A \cap B) = P(A) \cdot P(B)\). Knowing one outcome tells you nothing about the other.
- Dependent events: \(P(A \cap B) = P(A) \cdot P(B|A)\). The second probability updates based on the first result.
- Conditional probability: \(P(B|A) = P(A \cap B) / P(A)\) β the probability of B in the restricted universe where A already occurred.
- "Without replacement" = dependent. "With replacement" = independent. This distinction drives many real-world calculations.
Epidemiologists use conditional probability every day β calculating the probability of contracting a disease given exposure, given vaccination status, given age group. These calculations directly inform public health interventions, contact tracing protocols, and vaccine efficacy reporting. Quality control analysts who sample batches without replacement (destructive testing, for example) must account for dependent probabilities to correctly model how many defects might remain in a batch after partial inspection. Getting this wrong means either over-approving defective shipments or wasting resources rejecting acceptable ones.
Calculator Connection
The Binomial Probability Calculator models repeated independent trials (coin flips, survey responses, quality tests with replacement) and computes the probability of any specified number of successes.
Try it with the Calculator
Apply what you've learned with this tool.
Independent vs. Dependent Events: Quiz
5 questions per attempt Β· Intermediate Β· Pass at 70%
Start Quiz β