A bag has r red balls and b black balls. All balls are identical except for their colours. In a trial, a ball is randomly drawn from the bag, its colour is noted and the ball is placed back into the bag along with another ball of the same colour. Note that the number of balls in the bag will increase by one after each trial. A sequence of four such trials is conducted. What is the probability of drawing a red ball in the fourth trial?
A. r / (r + b)
B. (r + 3) / (r + b + 3)
C. (r + b + 3) / r
D. r / (r + b + 3)
GATE 2021 · Engineering Mathematics · Conditional Probability and Polya Urn · medium
Answer: P(red on 4th trial) = r / (r + b) [Option A]
Compute P(red on trial 2) by total probability: P(red on 2) = P(red1)*P(red2|red1) + P(black1)*P(red2|black1) = (r/(r+b))*(r+1)/(r+b+1) + (b/(r+b))*r/(r+b+1) = r*(r+1+b) / ((r+b)*(r+b+1)) = r*(r+b+1) / ((r+b)*(r+b+1)) = r/(r+b).
Generalise: P(red on trial k) = r/(r+b) for all k: By induction the same cancellation occurs at every step. For trial 4, P(red) = r/(r+b), matching option A.