Poker Full House Probability

  1. Poker Full House Probability

E) Pfull house 3 alike with a pair. We need one value for the three that are alike, 6 ways, and then we must choose from the remaining 5 values for the pair, 5 ways. The orderings are given by 5!/(3! The probability of hitting a full house If a player has two pair on the flop in Hold'em with a standard deck of 52 cards, the probability of hitting a full house (full house odds) on the turn is 8.5%, and 16% on the river. If we flop a set, then our probability to hit the necessary combination on the turn is 13%, and 30% on the river.

The probability of getting a full house is precisely measured at 0.144 percent. Players may see the chances of getting this hand as pretty bleak, but once they get their hands into it they are guaranteed to win almost any game. The odds of getting this strong hand are set at 694: 1. A Straight Flush and 4 of a Kind are stronger than a Full House, and a Full House is rarely beaten on the river in a game of Texas Hold’em poker. There are at least 5 different poker hand combinations that rank lower than a Full House, and the next one on our list is a Flush.

Poker Full House ProbabilityPoker

Mark Brader has provided the following tables of probabilities of the various five-card poker hands when five cards are dealt from a single 52-card deck, and also when using multiple decks.

The traditional hand types are described on the poker hand ranking page. These include one hand that belongs to two types at once - a straight flush is both a straight and a flush. With two or more decks, it is possible for other combinations to occur, such as a hand that has both a flush and a pair (such as 4-6-6-8-9 all of one suit). The left-hand tables include these composite hand types for multiple decks; in these tables 'plain' means a hand that is not a flush.

The hands are listed in descending order of probability, which could be used as the basis for their ranking order in multi-deck poker variations. It can be seen that as the number of decks increases, flushes become easier to make than straights, and sets of equal cards become more common.

Here is the Perl program that produced the tables. Mark Brader has placed both the program and the tables in the public domain.

Intro

This is a problem concerning basic probability calculations from the text: “A First Course in Probability Theory” by Sheldon Ross (8th addition).

Sample Problem

Probability

Chapter 2 #16. Poker dice is played by simultaneously rolling 5 dice. Show that:
a) P[no two alike] = .0926, b) P[one pair] = .4630, c) P[two pair] = .2315, d) P[three alike] = .1543, e) P[full house] = .0386, f) P[four alike] = .0193, g) P[5 alike]=.0008.

Solution

Notation, I will let ^ designate the power function. For example, 6^5 is 6 to the fifth power. 6! is 6 factorial, 6! = 6 * 5 * 4 * 3 * 2 * 1.
To calculate the Probabilities here, we will divide the number of occurrences for a particular event by the total possibilities in rolling 5 dice.
N[total] = total possibilities in rolling five dice = 6^5 = 7776
Note: N[total] is the number of ordered rolls. For example, if we rolled the dice one by one and rolled in order 3,4,5,6,2, it would be considered as different from if we rolled 2,3,4,5,6 in order.
a) P[no two alike]
There are 6 choices of numbers for the first dice. The 2nd dice must be one of the remaining 5 unchosen numbers, and the 3rd dice one of the 4 remaining unchosen numbers, and so on… This gives an ordered count, so:
N[no two alike] = 6 * 5 * 4 * 3 * 2 = 720
P[no two alike] = N[no two alike]/N[total] = 720/7776 = 0.09259259
b) P[one pair]
First we count the possible sets (unordered) of numbers. Here we have one number that is the pair, 6 choices. Then we must choose 3 different numbers from the remaining 5 values, as these three are equivalent, we have choose(5,3) = 5!/(3! * 2!) possibilities. So 6 * choose(5,3) is the total combinations of numbers. Since we are dealing with ordered counts, we must consider the orderings for each set of numbers. We have 5 die with 2 the same so the number of orderings is 5!/2!. Multiplying these together gives us the number of ordered samples:
N[one pair] = 6 * (5!/(3! * 2!)) * (5!/2) = 3600
P[one pair] = N[one pair]/N[total] = 0.462963
c) P[two pair]
Here we have 2 pairs which are equivalent, so we must choose 2 values from the 6 possible values, choose(6,2)= 6!/(2! * 4!). Then we must choose 1 value from the remaining 4 for the single value, 4 ways. Now we must consider the orderings, 5 die with 2 sets of 2 the same so the number of orderings is 5!/(2! * 2!).
N[two pairs] = (6!/(2! * 4!)) * 4 * (5!/(2! * 2!)) = 1800
P[two pairs] = N[two pairs]/N[total] = 0.2314815
d) P[three alike] (the remaining two cards are different)
There are 6 choices for the three of a kind. Then we must choose 2 different values from the remaining 5 choices, choose(5,2) = 5!/(2! * 3!). The number of orderings is 5 items with 3 being identical, which is 5!/3!.
N[three alike] = 6 * (5!/(3! * 2!)) * (5!/3!) = 1200
P[three alike] = N[three alike]/N[total] = 0.154321
e) P[full house] 3 alike with a pair.
We need one value for the three that are alike, 6 ways, and then we must choose from the remaining 5 values for the pair, 5 ways. The orderings are given by 5!/(3! * 2!).
N[full house] = 6 * 5 * (5!/(3! * 2!)) = 300
P[full house] = N[full house]/N[total] = 0.03858025
f) P[four alike]
We need one value for the four of a kind, and then one value from the remaining 5 for the last die. The number of orderings is given by 5!/4!.
N[four alike] = 6 * 5 * (5!/4!) = 150
P[four alike] = N[four alike]/N[total] = 0.01929012
g) P[five alike]
Here we need 1 value for the five alike, 6 ways. There is just 1 possible ordering as all five die are the same.
N[five alike] = 6
P[five alike] = N[five alike]/N[total] = 0.0007716049
Check: the numbers of each type must sum to N[total] = 7776:
720 + 3600 + 1800 + 1200 + 300 + 150 + 6 = 7776

Extra:
Straight
We can have two possible straights: one composed of (6,5,4,3,2) and one composed of (5,4,3,2,1). Each of these straights can be permuted 5! ways.
N[straight] = 2 * 5! = 240
P[straight] = N[straight]/N[total] = 0.0308642

Now let’s run a simulation in R:

Poker Full House Probability

Results of simulation:
notwoalike: 0.09194
onepair: 0.464
twopair: 0.23187
threealike: 0.1554
fullhouse: 0.03727
fouralike: 0.01889
fivealike: 0.00063
straight: 0.03072

Poker dice full house probability

Poker Full House Probability