Tossing an uneven coin

probabilitystatistics

Two players have one uneven
coin, the probability of getting a head is 2/3. The first person(A) throws
three times. The second(B) tosses the coin until he gets tails.
a) What is the probability that the former will throw more heads;
from the second?
b) What is the average number of heads thrown by the two
together?

Can you help me understand how am i supposed to compare 2 probabilities and how do i calculate the average number of heads thrown by the two?Do i have to calculate the average numbers of heads for every assumption?

Best Answer

The easiest way to this is by defining appropriate random variables:

$Y_1$ being the number of heads the first person has throw, and $Y_2$ being the number of heads the second person has thrown. Then by the information:

$Y_1\sim Bin(3,\frac{2}{3})$ and $Y_2\sim \text{Geom}(\frac{1}{3})$

I think there is an implicit assumption that $Y_1$ and $Y_2$ are independent. Then the desired probability is:

$$ \mathbb{P}(Y_1\geq Y_2)= \mathbb{P}(Y_1=1,Y_2=0)+ \mathbb{P}(Y_1=2,Y_2=0)+ \mathbb{P}(Y_1=2,Y_2=1) + \mathbb{P}(Y_1=3,Y_2=0) +\mathbb{P}(Y_1=3,Y_2=1)+ \mathbb{P}(Y_1=3,Y_2=2)$$

Also when dealing with probability the average number is usually the expectation, and they are probably referring to the expectation:

$$ \mathbb{E}[Y_1+Y_2] $$

Related Question