I have a game of cards numbered 1-10. Three players draw cards, the highest card wins. Cards are not replaced.
The first player draws a 9. I want to work out the probability of that player winning and losing.
The probability of winning is the product of the two other players picking up lower cards in this case
$\frac{8}{9} \cdot \frac{7}{8} = \frac{56}{72}$
The probability of losing is the probability that either player draws a higher card (the ten)
$\frac{1}{9} + \frac{1}{8} = \frac{17}{72}$
Given that player 1 can only win or lose and there is no way that there can be a draw why do these probabilities add to make more than one?
I've tried a couple of different values and they always come out more than one.