Probability of flopping a royal flush

992 Views Asked by At

I have no stats training, so I am asking if I am attacking this simple statistical problem correctly.

What are the chances of flopping a royal flush in Texas hold’em?

My attempt: The first card dealt to the player must be either a $10,J,Q,K,$ or $A$, any suit. So the probability of the first card deal would be $\frac{5}{13}$. Then the second card dealt to the player must be the same suit, and one of the values mentioned above, meaning the probability is $\frac{4}{51}$. It follows that the next three cards on the flop must be the three remaining cards needed to complete the royal flush, with probabilities: $(\frac{3}{50})(\frac{2}{49})(\frac{1}{48})$. Therefore I believe the odds of flopping a royal flush is: $\frac{5!}{13\cdot 51\cdot 50\cdot 49\cdot 48}$

I would think that this probability would be independent of how many players are in the game. The odds of the deck the be stacked in the perfect way according to how many players there are to give you the royal flush on the flop seem to be the same.

Have I made any mistakes? Thanks in advance.

1

There are 1 best solutions below

0
On

You are correct.

$\dfrac {5!} {(13 \cdot 51 \cdot 50 \cdot 49 \cdot 48)} = \dfrac {1}{13} \cdot \dfrac {5 \cdot 4 \cdot 3 \cdot 2 \cdot 1}{51 \cdot 50 \cdot 49 \cdot 48} = \dfrac {52}{13} \dfrac {5 \cdot 4 \cdot 3 \cdot 2 \cdot 1}{51 \cdot 50 \cdot 49 \cdot 48} = \dfrac {4}{C(52,5)} = \dfrac {C(4, 1)} {C(52, 5)} = 0.000001539.$

Most of the time, you'll see the probability in terms of the binomial coefficients, $C(n, k)$.