What Is the Probability That Player A Draws the Red Ball First?

  • Thread starter Thread starter CAF123
  • Start date Start date
  • Tags Tags
    Probability
Click For Summary

Homework Help Overview

The problem involves calculating the probability that Player A draws a red ball first from an urn containing 3 red and 7 black balls, with players A and B drawing consecutively until a red ball is selected.

Discussion Character

  • Exploratory, Assumption checking, Mathematical reasoning

Approaches and Questions Raised

  • Participants discuss the initial probability calculations for A and B, questioning the independence of B's probability from A's draw. Some explore the implications of A drawing a red ball first and how it affects B's chances.

Discussion Status

Participants are actively engaging with the problem, raising questions about the assumptions underlying the probability calculations. Some suggest alternative methods, such as setting up a recurrence relation, while others reflect on the efficiency of their approaches.

Contextual Notes

There is a focus on the implications of drawing without replacement and how it affects the probabilities. Participants also note the potential inefficiency of certain methods as the number of balls increases.

CAF123
Gold Member
Messages
2,918
Reaction score
87

Homework Statement


An urn contains 3 red and 7 black balls. A and B withdraw balls consecutively until a red ball is selected. Find the probability that A selects the red ball. (A draws the first ball.)

The Attempt at a Solution



A selects first => he will win with prob 3/10
B selects second => prob that he gets red is conditional on what colour A took.
P(B got red) = P(B got red| A got red)P(A got red) + P(B got red| A not got red)P(A not red) = (2/9)(3/10) + (3/9)(7/10) = 3/10. This seems nonintuitive - it seems the prob of B getting red is independent of what A took. Can someone explain this?

Where to go from here?
 
Physics news on Phys.org
If B draws, then A has already drawn. How many balls are left after A draws?
 
phinds said:
If B draws, then A has already drawn. How many balls are left after A draws?
B will have to choose from the remaining 9 balls
 
CAF123 said:
B will have to choose from the remaining 9 balls

So why is it that you have a probability for B that is "... out of 10" ?
 
CAF123 said:

Homework Statement


An urn contains 3 red and 7 black balls. A and B withdraw balls consecutively until a red ball is selected. Find the probability that A selects the red ball. (A draws the first ball.)

The Attempt at a Solution



A selects first => he will win with prob 3/10
B selects second => prob that he gets red is conditional on what colour A took.
P(B got red) = P(B got red| A got red)P(A got red) + P(B got red| A not got red)P(A not red) = (2/9)(3/10) + (3/9)(7/10) = 3/10. This seems nonintuitive - it seems the prob of B getting red is independent of what A took. Can someone explain this?

Where to go from here?

Explanation: you are neglecting the fact that if A draws a red ball the game stops and B does not get to draw a ball at all.

Your conclusion would be correct if B got to select a ball whether or not A got red; that is, even though B would be drawing from an urn now containing 9 balls, he would still have a 3/10 chance of getting red. To see this, number the balls from 1 to 10. There are 10! permutations altogether; A takes the first ball in line, then B takes the second, etc. The number of permutations in which the first ball is red is the same as in which the second ball is red, so A and B have the same probabilities of choosing red. In fact, this argument applies to any position, so if they continually choose balls without replacement (and don't look at the colors), then, when B chooses the very last ball he still has a 3/10 chance of choosing red! The argument is the same: the number of permutations in which a red ball is last is (3/10)*10! Students are often very surprised when they first see this.

RGV
 
So this means the probability remains the same indep of what has been chosen before as long as we don't know what balls have been picked out before?

I solved this problem by noting down the combinations in which A would win:
R, BBR, BBBBR,BBBBBBR and I attained the right answer. Is there a more elegant approach? e.g say if the number of balls got very large, my method is inefficient.
 
Last edited:
CAF123 said:
Is there a more elegant approach?
Set up a recurrence relation. Define P(r, b) = prob that first player gets the first red, given r red and b black available. Consider the possible outcomes of the first player's draw, and thereby obtain an equation relating P(r, b) to P(r, b-1).
 
CAF123 said:
So this means the probability remains the same indep of what has been chosen before as long as we don't know what balls have been picked out before?

I solved this problem by noting down the combinations in which A would win:
R, BBR, BBBBR,BBBBBBR and I attained the right answer. Is there a more elegant approach? e.g say if the number of balls got very large, my method is inefficient.

You can generalize and get a formula; then you can worry about the best way to evaluate that formula. If we have R red and B black balls, with N = R+B balls altogether, and if Mr. A starts, then if he wins he does so on an odd-numbered draw. Let Pk = probability that A wins on draw 2k+1 for k = 0,1,2,... . If A wins on draw 2k+1 the first 2k balls must be black and then the next one must be red, so
P_k = \frac{B(B-1) \cdots (B-2k+1)}{N(N-1) \cdots (N-2k+1)} \frac{R}{N-2k}<br /> = \frac{{B \choose 2k}}{{N \choose 2k}}\frac{R}{N-2k} .
Computationally, it might be better to go at it recursilvely:
<br /> n:= B;\\<br /> d:= B+R;\\<br /> f:=n/d;\\<br /> \text{for } j=1 \text{ to } 2k-1 \text{ do }\\<br /> \mbox{ } n:=n-1;\\<br /> \mbox{ } d:=d-1;\\<br /> \mbox{ } f:=f*n/d;\\<br /> \text{end for};\\<br /> Pk:=f*R/(d-1);
 

Similar threads

  • · Replies 7 ·
Replies
7
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 10 ·
Replies
10
Views
2K
  • · Replies 8 ·
Replies
8
Views
3K
  • · Replies 2 ·
Replies
2
Views
3K
  • · Replies 3 ·
Replies
3
Views
2K
Replies
5
Views
2K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 2 ·
Replies
2
Views
10K