Why Conditional Probability Pops Up Everywhere

Ever wondered why your chance of catching a bus changes once you know it’s already late? That shift in odds is exactly what conditional probability captures – the probability of an event after we’ve learned something else happened.

💡 In Simple Words: Conditional probability tells you how likely something is, given that another thing you already know has occurred. Think of it like checking the odds of pulling a red marble from a bag after you’ve already taken out a blue one.

What Is Conditional Probability?

In plain language, conditional probability is the likelihood of event A happening when we already know that event B has happened. We write it as P(A | B), read “the probability of A given B”. The vertical bar “|” just separates the two events.

Important: The two events don’t have to be related, but if they are, the numbers can change dramatically.

How to Calculate Conditional Probability

The formula is simple once you see it:

P(A | B) = P(A ∩ B) ÷ P(B)

  • P(A ∩ B) means the probability that both A and B occur together. The symbol “∩” looks like an upside‑down “U”.
  • P(B) is the probability that B occurs at all.

Think of a water pipe: P(B) is the total amount of water flowing, and P(A ∩ B) is the amount that passes through a narrower side‑branch. The conditional probability is the fraction that makes it through the side‑branch.

Step‑by‑Step Guide

StepAction
1Identify the events A and B.
2Find P(B) – the probability of the given event.
3Find P(A ∩ B) – the probability that both happen together.
4Divide P(A ∩ B) by P(B) to get P(A | B).
graph TD A[Identify A and B] --> B["Calculate P(B)"] B --> C["Calculate P(A ∩ B)"] C --> D["Compute P(A|B)=P(A∩B)/P(B)"] D --> E[Interpret result]

Worked Example: Drawing Cards

Suppose you draw one card from a standard 52‑card deck. Let:

  • A = “the card is a King”.
  • B = “the card is a face card (Jack, Queen, or King)”.

First, find P(B). There are 12 face cards, so P(B)=12/52=3/13.

Next, find P(A ∩ B). Every King is also a face card, and there are 4 Kings, so P(A ∩ B)=4/52=1/13.

Now apply the formula:

P(A | B)= (1/13) ÷ (3/13) = 1/3.

Interpretation: If you already know the card is a face card, the chance it’s a King drops from 4/52 (about 7.7%) to 1/3 (about 33%).

Another Example: Defective Items

A factory produces 200 gadgets, 30 of which are defective. A quality‑control test picks 5 gadgets at random without replacement. What’s the probability that the third gadget is defective, given that the first two were good?

Here, event B = “first two gadgets are good”. Event A = “third gadget is defective”.

Step 1: P(B) = (170/200) × (169/199) because there are 170 good gadgets initially.

Step 2: After removing two good gadgets, 168 good and 30 defective remain, total 198. So P(A ∩ B) = P(B) × (30/198).

Finally, P(A | B) = (30/198) ≈ 0.1515, or about 15%.

Key Tips for ISC Exams

  • Always check whether the events are independent. If they are, P(A | B)=P(A) and the conditional part disappears.
  • When dealing with “without replacement” problems, remember the total number of outcomes shrinks after each draw.
  • Write down the known probability (P(B)) first – it’s the denominator, so you’ll never divide by zero.
  • Use a tree diagram if the wording is messy; it visually separates each stage.

Quick Summary

  • Definition: Probability of A after B is known – P(A | B) = P(A ∩ B)/P(B).
  • When to use: Whenever a condition or extra information is given.
  • Steps: Identify → Find P(B) → Find P(A ∩ B) → Divide.
  • Common pitfalls: Forgetting to adjust the total after “without replacement” or assuming independence.

📝 Likely Exam Questions

  1. Question: In a bag there are 3 red, 4 blue, and 5 green balls. One ball is drawn without replacement. Find the probability that the second ball is green given that the first ball was red.
    Answer: After removing a red ball, 11 balls remain with 5 green. So P = 5/11.
  2. Question: A die is rolled twice. What is the probability that the sum is 7 given that the first roll was a 3?
    Answer: The only way to total 7 is if the second roll is 4. So P = 1/6.
  3. Question: From a deck, two cards are drawn without replacement. Find P(first card is an Ace | second card is a King).
    Answer: P(Ace ∩ King) = (4/52)*(4/51). P(second is King)=4/52. Thus P = (4/52)*(4/51) ÷ (4/52) = 4/51.
  4. Question: In a class of 40 students, 25 study Maths, 18 study Physics, and 10 study both. If a student is known to study Physics, what is the probability that they also study Maths?
    Answer: P(Maths|Physics)=10/18 = 5/9.
  5. Question: A box contains 6 white and 4 black marbles. Two marbles are drawn one after the other without replacement. Find the probability that the second marble is white given that the first marble was black.
    Answer: After a black marble is taken, 9 marbles remain with 6 white. So P = 6/9 = 2/3.
#ISC#Class 12#Mathematics#Probability#Conditional Probability