There are $52$ cards in a deck is distributed equally to $4$ people. What is the probability for one of 4 people to get $13$ cards such that none of them have the same value?
Example:
- {2♥, 3♥, 4♥, 5♥, 6♥, 7♥, 8♥, 9♥, 10♥, J♥, Q♥, K♥, Ace♥} is correct
- {3♠, 3♥, 4♥, 5♥, 6♥, 7♥, 8♥, 9♥, 10♥, J♥, Q♥, K♥, Ace♥} is incorrect
Note: my teacher said result $\frac{4^{13}}{^{52}C_{13}} \approx 0.0001057$ is incorrect and the order of 13 cards on player's hand does not matter.
My programming experiment:
I know a bit about Python programming, so I did a test, my test specific was:
- A deck is distributed equally to $4$ people
- Then I check if any player satisfies 13 cards and none of them have the same number $\Rightarrow$ this is a successful experiment and if none of 4 people matches the condition so this is an unsuccessful experiment.
I do this test 100 000 times, add up all the successful experiments and divide it by 100000, the probability always falls between 0.0003 and 0.0005