How many different 5 card poker hands would contain only cards of a single suit?
I know there are 2,598,960 different 5 card poker hands but I don't know how many would only contain a single suit.
I know there are 2,598,960 different 5 card poker hands but I don't know how many would only contain a single suit.
You can also solve this by looking up the frequency of the types of hands in poker. What you want is the number of flushes plus straight flushes plus royal flushes.
36 straight flush
4 royal flush
4C1*13C5
4!/3!1! * 13!/5!8!
4 * 1287
5148
The formula for combinations is n!/(r!(n-r)!) where n=number of possible cards (13) and r=number of chosen cards (5). Substituting gives us:
13!/(5!(13-5)!) = 13!/(120*8!)
If we work this out, we get 1287. Now we remember there are 4 suits, and multiply this by 4 to get:
5148 combinations.
-IMP