Consider the following simple game. In a single round, Player A tosses a fair coin, and then Player B tosses a fair coin. Two rounds are played. The winner is the player with the larger number of Heads tossed. If the numbers are equal, the winner is whoever tossed the first Head. If nobody tosses any Head, there is no winner.
a) Write down a sample space for this experiment, and the probability of each outcome (element of the sample space).
attempt:
$S_{A} = [TH,HH,TT,HT]$
$S_B = [TH,HH,TT,HT]$
P(H) = P(T) = 1/2
b)What is the probability that Player A wins the game, given that his first toss is Head?
attempt:
Based on this as reference
Part b is regarding conditional probability as far as my understanding goes.
P(A win | first toss is head)
formula: $P(A|B) = \frac{P(A \cap B)}{P(A)}$
$P(A\,win | first\;toss\,is\,head) = \frac{P(A\,win \cap\,first\,toss\,is\,head)}{P(A\,win)} $
P(getting head on first toss) = 1/2
P( getting head on second toss) = $\frac{1}{2} *\frac{1}{2}*\frac{1}{2}$
Not sure how to calculate the P (A win), as there are multiple ways to win based on the question, and I'm stuck going further than this.
c) Given that Player A wins, what is the probability that his first toss was Head?
The sample space has sixteen elements; the identity of an element specifies the sequence obtained by $A$ and the sequence obtained by $B$. Each element has equal probability of $\frac1{16}$. The game outcome table would be $$\begin{array}{c|c} sequences & winner \\ \hline HH - HH & -- \\ HH - HT & A \\ HH - TH & A \\ HH - TT & A \\ HT - HH & B \\ HT - HT & -- \\ HT - TH & A \\ HT - TT & A \\ TH - HH & B \\ TH - HT & B \\ TH - TH & -- \\ TH - TT & A \\ TT - HH & B \\ TT - HT & B \\ TT - TH & B \\ TT - TT & -- \end{array} $$ Of the results in the table, the first $8$ have $A$ throwing heads on the first toss. Of those, $5$ are wins for $A$ (one is a win for $B$, the other two are not a win for either). So your answer should be $\frac58$.
Using Bayes theorem, Prob($A$ throwing heads first) = $\frac8{16}$; Prob ($A$ throwing heads first AND $A$ winning) = $\frac5{16}$ so Prob ($A$ winning given that a$A$ throws heads first) = $\frac5{16} / \frac8{16} = \frac58$.