Skip to main content

Independent vs. Dependent Events

Understand how the probability of one event changes β€” or doesn't β€” based on whether another event already occurred.

Lesson 8 of 10 Statistics & Probability Intermediate ⏱ 9 min read
πŸ”₯ Why This Matters

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.

🎯 What You'll Learn
  • 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
πŸ“– Key Vocabulary
Independent EventsThe outcome of one event does not affect the probability of the other. E.g., two separate coin flips. Dependent EventsThe outcome of one event changes the probability of the other. E.g., drawing cards without replacement. Conditional Probability P(B|A)"The probability of B given A has already occurred." Read as "P of B given A." Multiplication Rule (Independent)\(P(A \cap B) = P(A) \cdot P(B)\). Multiplication Rule (Dependent)\(P(A \cap B) = P(A) \cdot P(B|A)\). With / Without ReplacementReplacing an item before the next draw keeps events independent; not replacing makes them dependent.
Key Concept β€” The Two Multiplication Rules
\[ \textbf{Independent: } P(A \cap B) = P(A) \times P(B) \] \[ \textbf{Dependent: } P(A \cap B) = P(A) \times P(B \mid A) \] \[ \textbf{Conditional Probability: } P(B \mid A) = \frac{P(A \cap B)}{P(A)} \]

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

ScenarioP(1st Ace)P(2nd Ace)P(both Aces)
With replacement (independent)4/524/52(4/52)Β² β‰ˆ 0.0059
Without replacement (dependent)4/523/51(4/52)(3/51) β‰ˆ 0.0045

Without replacement: the deck shrinks, so the second draw's probability changes based on the first result.

Worked Example 1 β€” Basic: Independent Events (Coin Flips)

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} \]
Worked Example 2 β€” Intermediate: Dependent Events (Cards Without Replacement)

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} \]
Worked Example 3 β€” Real World: Medical Testing

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.

✏️ Quick Check
  1. A bag has 5 red and 3 blue balls. Two balls are drawn without replacement. What is P(both red)?
  2. Are these independent? Rolling a die and then flipping a coin.
  3. P(A)=0.6, P(A and B)=0.24. Find P(B|A).
β–Ά Show Answers
  1. \(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.
  2. Yes, independent. The die outcome has no effect on the coin flip.
  3. \(P(B|A) = P(A \cap B)/P(A) = 0.24/0.6 =\) 0.40.
⚠️ Common Mistakes
  • 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.
βœ… Key Takeaways
  • 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.
πŸ’Ό Career Connection β€” Epidemiologist & Quality Control Analyst

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.

Binomial Probability
Calculate probability for a fixed number of independent trials.
Use calculator β†’
← Previous Lesson
Back to
Calculating Probability: Single Events
Continue Learning
Up Next: Counting Methods: Permutations and Combinations
Next Lesson →
Test Your Knowledge

Independent vs. Dependent Events: Quiz

5 questions per attempt  Β·  Intermediate  Β·  Pass at 70%

Start Quiz β†’

More in Statistics & Probability

Understanding Data and Types of Data Organizing Data with Frequency Tables Calculating the Mean (Average)
← All Statistics & Probability lessons