I need help calculating the chances of winning this strange game that I'm going to explain right now:
You have a deck of 52 cards(4 suits,Ace to King). All you have to do is turning
the cards one by one counting one,two,three while you turn them. If you get an
Ace when you count one or a two when you count two or a three when you count
three you lose.
For example if you get:
2(one),K(two),6(three),3(one),Q(two),3(three)
You lose,because you get a 3 when you counted three.
The only way I could think to resolve this problem is to calculate the chances of losing and then: \begin{equation} P(W)=1-P(L) \end{equation} where $ P(W) $ is chances of winning and $ P(L) $ is chances of losing. But how do I calculate $ P(L) $ ?
I've tried this,but I'm almost sure that's wrong: $P(L)=$chances of getting an ace in first position or chances of getting a 2 in second position or chances of gettin a 3 in third position or chances of getting an ace in fourth position and so on...
So: \begin{equation} P(L)=\frac{4}{52}+\frac{4}{51}+\frac{4}{50}+\frac{3}{49}+\frac{3}{48}+\frac{3}{47}+\frac{2}{46}+\frac{2}{45}+\frac{2}{44}+\frac{1}{43}+\frac{1}{42}+\frac{1}{41} \end{equation} Thanks everybody:)