How to check if a series of dealt cards are very unlikely

  • Context: Undergrad 
  • Thread starter Thread starter rsala004
  • Start date Start date
  • Tags Tags
    Cards Series
Click For Summary
SUMMARY

This discussion focuses on evaluating the likelihood of specific Texas Hold'em hands being dealt, particularly the occurrence of pocket aces (AA). The Hypergeometric distribution is identified as the appropriate statistical tool for calculating the probability of obtaining a specific hand in a single deal, while the Binomial distribution is used to determine the expected frequency of that hand over multiple deals. The example provided illustrates that in one million hands, the expected occurrence of AA is approximately 4525 times, with a standard deviation of about 67. Statistical hypothesis testing is recommended for assessing the consistency of observed hands against expected distributions.

PREREQUISITES
  • Understanding of Hypergeometric distribution
  • Familiarity with Binomial distribution
  • Basic knowledge of statistical hypothesis testing
  • Experience with programming for statistical analysis
NEXT STEPS
  • Research the Hypergeometric distribution and its applications in card games
  • Learn about the Binomial distribution and how to calculate expected values
  • Study statistical hypothesis testing methods and their significance
  • Explore programming libraries for statistical analysis, such as Python's SciPy or R
USEFUL FOR

This discussion is beneficial for poker enthusiasts, data analysts, and statisticians interested in validating the randomness of card distributions in Texas Hold'em games.

rsala004
Messages
23
Reaction score
0
I am trying to make a basic little program where i can input a large set of texas holdem hands (2 cards) and check to see how Unlikely/likely these cards were to be dealt. (to show that no tampering was done...ie. show its random enough)

For example, it is VERY unlikely that a player receives AA hundreds of times in a small sample.

I have some basic questions I was wondering if someone could help me get started?

I do have minimal experience with stats though.

my question is how would you represent how likely something is over the average or expected?

I figure there are (52 choose 2) card combinations...and each card combination should be expected equally, so over an extremely large sample all card combinations should be roughly occurring equally?

In statistics how do you show how far something is from normal?

any topics i should look up?

thanks a lot!
 
Physics news on Phys.org
rsala004 said:
I am trying to make a basic little program where i can input a large set of texas holdem hands (2 cards) and check to see how Unlikely/likely these cards were to be dealt. (to show that no tampering was done...ie. show its random enough)

For example, it is VERY unlikely that a player receives AA hundreds of times in a small sample.

I have some basic questions I was wondering if someone could help me get started?

I do have minimal experience with stats though.

my question is how would you represent how likely something is over the average or expected?

I figure there are (52 choose 2) card combinations...and each card combination should be expected equally, so over an extremely large sample all card combinations should be roughly occurring equally?

In statistics how do you show how far something is from normal?

any topics i should look up?

thanks a lot!

Cards dealt at random from a deck are a "selection without replacement". For this, you want to use the Hypergeometric distribution; this essentially can be used to you a probability of obtaining a given hand in a single deal.

To get the expected mean and standard deviation for the number of times you get a certain hand in repeated independent deals, you want the Binomial distribution.

Getting the probability of a certain hand (like pocket rockets, or AA in Texas Holdem) is just a matter of getting the number of ways for have that hand divided by the total number of hands. This is 6 / 1326, or 1 / 216, which is about 0.004524887

In a large number of repeated hands n, the expected number of times you will get AA is given by the binomial distribution, which is np, and the standard deviation is sqrt(np(1-p)).

For example, in one million hands, the number of times you get AA is about 4525, and the standard deviation is about 67

Cheers -- sylas
 
rsala004 said:
my question is how would you represent how likely something is over the average or expected?
The general name for this type of question is "statistical hypothesis testing". In short, is some set of observations consistent or inconsistent with what would be expected given some distribution? In long, this is the subject of books, multiple books. You will get an inkling of what needs to be done by googling "statistical hypothesis testing", but if you want to get serious about this topic you will need to read one of the books you run across during your search.
 

Similar threads

  • · Replies 9 ·
Replies
9
Views
4K
  • · Replies 3 ·
Replies
3
Views
4K
  • · Replies 4 ·
Replies
4
Views
3K
  • · Replies 9 ·
Replies
9
Views
6K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 8 ·
Replies
8
Views
5K
  • · Replies 1 ·
Replies
1
Views
2K
  • · Replies 3 ·
Replies
3
Views
3K
  • · Replies 35 ·
2
Replies
35
Views
6K
  • · Replies 25 ·
Replies
25
Views
7K