During a project researching coin flips, an assistant is asked to flip a fair coin twice. But the assistant is feeling lazy, and instead of following the directions, he does the following: He starts by flipping the coin once. Then, with probability 1/3 he copies the outcome of the first flip as the outcome of the second flip. With probability 2/3 he flips the coin a second a time (as instructed) and writes down that outcome.
(a) What is the probability that the assistant reports Heads for the second toss, given that the first toss was Heads? Explain and/or calculate.
(b) The assistant reports that both tosses were Heads. Given this, what is the probability that he is lying? (You may assume you got the probability from part (a) correct.)
So (a) for me was simple enough(i think) - simple law of total probability problem to calculate (1/3)1 + (2/3)(1/2) = 2/3
But (b) is a different beast. I'm trying to find the probability of P(L | two heads), and I tried using Bayes Law to equate this to
P(lying | two heads) = ( P(two heads | lying) * P(lying) ) / P(two heads)
I calculate the probability of P(two heads | lying) as 1/2, thinking that if he lied, he will give an answer of either two heads or two tails, and the probability of P(L) as 1/3, and the probability of P(HT) as 2/3 (as the only way you could get two heads is by conditioning on the first one being heads anyway... I'm very unsure about this one though.) Giving me a total answer of
(1/2 * 1/3) / (1/4) = 1/4
So, I'm pretty insecure about this answer as it intuitively doesn't make too much sense to me - can anybody point out where I might have made a mistake?
You've calculated everything correctly except for the unconditional probability of getting two heads. Intuitively, this cannot be greater than $1/2$, because the symmetry of the outcomes (heads vs. tails) implies that $\Pr[HH] = \Pr[TT]$, and since there are four possible outcomes, we now can see $\Pr[HH] < 1/2$.
To compute the desired probability, condition on the outcome of the first toss: $$\Pr[HH] = \Pr[HH \mid H]\Pr[H] + \Pr[HH \mid T]\Pr[T].$$ The second term is zero, of course. But what you reasoned was $$\Pr[HH] = \Pr[HH \mid H] = 2/3,$$ which you got from part (a); however, you can now see you have to multiply by the probability that the first toss was heads to begin with, which is $1/2$, giving you $$\Pr[HH] = 1/3.$$