Probability of at least one player out of five getting flush in Texas Holdem

combinatoricsprobability

I have been working on a problem which is the following: A game of Texas Holdem poker is played. There are three cards on the table and these cards are all the same color (e.g. hearts). In total a deck with 52 cards is used and 49 cards left after the initial 3 cards are placed on the table.

There are five players around the table which are dealth two cards each.

What is the probability that at least one of the players gets flush (e.g. 2 hearts on hand combined with 3 hearts on table).

My initial idea was to use the total number of combinations (without repetition) where the sample space is C(49, 2) and the number of possible combinations to get the flush is C(10, 2).

C(10, 2) / C(49, 2) = 3,8%

The probability of the first player getting a card of the same color as on the table is (10/49) and the second time (90/2352). So in total the probability of the first player getting two cards of the same color which is also on the table should be (10/49) * (90/2352).

Another alternative seems to be to use the binomial formula which is:

Pr(x=k) = c(n, k) * p^k * (1-p)^n-k

Where n = number of trials and k = number of successes

Which with our data translates to:

Pr(x = k) c(5, 1) * [(10/49) * (90/2352)]^1 * {1-[(10/49)*(90/2352)]}^4 = 3,8%

Is this a reasonable approach and would you say that it gives the correct probabilities?

Best Answer

Easier to say, what is the chance that no one hit the flush when the flop comes up with 3 of one suit. And then, what is the compliment of that.

$1-\left(1-\frac {10\choose 2}{49\choose 2}\right)^5$

Related Question