What is the probability that a five-card poker hand contains all 4 suits?What is the...

Sonia Gay
Answered
2022-06-26
What is the probability that a five-card poker hand contains all 4 suits?
What is the probability that a five-card poker hand contains all 4 suits?
What I did was I this:
My logic for C(4,1) was to choose one of the four suits, then the C(13,1) was to pick one of the cards of that suit, and similarly for C(3,1) subtracting one because there is one less suit to choose from.
Same logic applies for C(2,1) and C(1,1) and then C(4,4) and C(48,1) lets me choose any of the remaining 48 cards from all suits because the last card doesn't matter.
Then answer ends up being something ridiculously big (not a fraction) and I don't know where I went wrong because I believe my logic is sound. What would be the correct answer and why?