Conditional Probability: Exam-Pattern Drill (2)

medium 2 min read

Question

A bag contains 5 red and 7 blue balls. Two balls are drawn one after another without replacement. Find: (a) probability that both are red, (b) probability that the second is red given the first was red, (c) probability that exactly one is red. (CBSE pattern question — appears almost every year.)

Solution — Step by Step

Total balls = 12. Red balls = 5.

P(R1)=512P(R_1) = \frac{5}{12}

After drawing one red ball, 4 reds and 7 blues remain (11 total).

P(R2R1)=411P(R_2 | R_1) = \frac{4}{11}

This is the conditional probability — the sample space has shrunk because we know the first was red.

Both red:

P(R1R2)=P(R1)P(R2R1)=512411=20132=533P(R_1 \cap R_2) = P(R_1) \cdot P(R_2 | R_1) = \frac{5}{12} \cdot \frac{4}{11} = \frac{20}{132} = \frac{5}{33}

Exactly one red = (red then blue) + (blue then red):

P=512711+712511=35+35132=70132=3566P = \frac{5}{12} \cdot \frac{7}{11} + \frac{7}{12} \cdot \frac{5}{11} = \frac{35 + 35}{132} = \frac{70}{132} = \frac{35}{66}

(a) P=5/33P = 5/33, (b) P=4/11P = 4/11, (c) P=35/66P = 35/66.

Why This Works

Conditional probability shrinks the sample space. Once you know an event has occurred, you only consider outcomes consistent with that event.

The multiplication rule P(AB)=P(A)P(BA)P(A \cap B) = P(A) \cdot P(B | A) chains conditional probabilities into joint probabilities. This is the bedrock of every “without replacement” problem.

The “exactly one” calculation requires summing over both orderings, since the question doesn’t specify which draw was red.

Whenever a problem says “without replacement”, expect conditional probability. Whenever it says “with replacement”, events are independent and you can multiply directly.

Alternative Method

Combinatorial approach for “both red”: P=(52)/(122)=10/66=5/33P = \binom{5}{2}/\binom{12}{2} = 10/66 = 5/33. Same answer, but this method ignores the order — fine for “both” or “neither” but not for ordered conditional probabilities.

Common Mistake

For “exactly one red”, students often forget to add both orderings. If the draws are sequential and labelled (1st, 2nd), there are two ways to get exactly one red: RB or BR. Both have probability 35/13235/132, summing to 70/132=35/6670/132 = 35/66.

Want to master this topic?

Read the complete guide with more examples and exam tips.

Go to full topic guide →

Try These Next