I Two-player card game, combined probability

AI Thread Summary
In a two-player card game using a standard 52-card deck, each player receives three cards but only plays with two, discarding one unseen. The total number of possible deals is calculated as C(52,3) for the first player and C(49,3) for the second player, resulting in a total of C(52,3)xC(49,3). Knowledge of one's own discarded card does not change the formula, but knowing the opponent's discarded card could influence the distribution if it is not randomly chosen. The discussion emphasizes that the discarded card's randomness is crucial for accurate probability calculations. Understanding these probabilities is essential for strategic gameplay.
Lenus
Messages
20
Reaction score
1
There is a card game where one player gets three cards and only uses two (the third one is discarded without showing to an opponenet), and the second player gets also three cards and uses only two, discarding the third card in the similar way - without showing.

I am trying to enumerate all possible deals, but stuck with the logic. Do I account for the mucked (the third cards) or not?

If I have a 52-card standard deck, the first players hands number would be C(52,3) and the second players number of hands would be C(49,3)? Thus the total number of the deals would be C(52,3)xC(49,3).

What if I am one of the players and know the third discarded card of mine, but don't know the discarded card of my opponent, will it affect the above-mentioned formula?
 
Physics news on Phys.org
If the disposed card is not chosen at random, then you should account for it - it will influence the distributions.
Lenus said:
Thus the total number of the deals would be C(52,3)xC(49,3).
Yes, if the two players are different.
Lenus said:
What if I am one of the players and know the third discarded card of mine, but don't know the discarded card of my opponent, will it affect the above-mentioned formula?
The formula is true independent of your knowledge. If you know some cards and some not, you can calculate how many different options are left - then your cards (including the disposed one - the opponent cannot have it) are relevant of course.
 
mfb

If the disposed card is not chosen at random, then you should account for it - it will influence the distributions.

The term "not chosen at random" was the key, thanks a lot!
 
  • Like
Likes mfb
I was reading documentation about the soundness and completeness of logic formal systems. Consider the following $$\vdash_S \phi$$ where ##S## is the proof-system making part the formal system and ##\phi## is a wff (well formed formula) of the formal language. Note the blank on left of the turnstile symbol ##\vdash_S##, as far as I can tell it actually represents the empty set. So what does it mean ? I guess it actually means ##\phi## is a theorem of the formal system, i.e. there is a...

Similar threads

Back
Top