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

  • Thread starter Thread starter rsala004
  • Start date Start date
  • Tags Tags
    Cards Series
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.
 
Namaste & G'day Postulate: A strongly-knit team wins on average over a less knit one Fundamentals: - Two teams face off with 4 players each - A polo team consists of players that each have assigned to them a measure of their ability (called a "Handicap" - 10 is highest, -2 lowest) I attempted to measure close-knitness of a team in terms of standard deviation (SD) of handicaps of the players. Failure: It turns out that, more often than, a team with a higher SD wins. In my language, that...
Hi all, I've been a roulette player for more than 10 years (although I took time off here and there) and it's only now that I'm trying to understand the physics of the game. Basically my strategy in roulette is to divide the wheel roughly into two halves (let's call them A and B). My theory is that in roulette there will invariably be variance. In other words, if A comes up 5 times in a row, B will be due to come up soon. However I have been proven wrong many times, and I have seen some...
Back
Top