Suppose I flip two fair coins at the same time repeatedly until I have seen at least one head on each of the coins. What is the expected number of times I would have to perform these flips until that condition is met?
So recursively, I've realized that the probability of meeting the condition by spin $k$ is: $$\mathsf P(\text{one head on one coin only in previous spins})\\ *\mathsf P(\text{getting a head on the other coin on this spin)}\\ +\mathsf P(\text{no heads on previous spin})*\mathsf P(\text{getting both heads on this spin})$$ Which leads me to: $$\text{P(k)} = 2*(1-\frac{1}{2})^{k-1}*(1-(1-\frac{1}{2})^{k-1})*(1)*(\frac{1}{2}) + (1-\frac{1}{2})^{2k-2}*p^{2}$$ Am I on the right track?