Probability Distributions with Replacement
When drawing items with replacement (putting each item back before drawing again), the probabilities follow different patterns than drawing without replacement. Let's see how this works.
Consider drawing 2 balls from a box containing 2 red balls (R₁ and R₂) and 1 green ball (G) with replacement. We want to find the probability distribution for the number of red balls drawn.
To solve this, we list all possible outcomes: R₁R₁, R₁R₂, R₁G, R₂R₁, R₂R₂, R₂G, GR₁, GR₂, and GG. We can count how many ways we get 0, 1, or 2 red balls and calculate their probabilities.
The resulting distribution is: PX=0 = 1/9, PX=1 = 4/9, and PX=2 = 4/9. This makes sense because drawing with replacement keeps the probability of drawing each type of ball constant for each draw.
🔄 In "with replacement" scenarios, previous draws don't affect future draws - making the math somewhat simpler than "without replacement" problems.