Winning with a worse deck

You and a friend are playing poker together. After soundly defeating your friend for several rounds in a row, you offer your friend the following handicap:

You will play with part of a standard poker deck consisting of only the cards 2 through 6 (20 cards), while your friend will play with the remaining cards (32 cards). You will play a game of poker in which each player is dealt 5 cards and there is no 'discard and replace' phase. The normal rules for poker hand superiority apply.

If the probability that you win a round of this version of poker is P P , then what is 1000 P ? \lfloor1000P\rfloor ?


The answer is 566.

This section requires Javascript.
You are seeing this because something didn't load right. We suggest you, (a) try refreshing the page, (b) enabling javascript if it is disabled on your browser and, finally, (c) loading the non-javascript version of this page . We're sorry about the hassle.

2 solutions

Andy Hayes
Oct 30, 2015

For the deck consisting of 20 cards, there are ( 20 5 ) = 15504 \binom{20}{5}=15504 possible hands of 5 cards. The number of combinations for each type of hand is as follows:

Straight flush: ( 1 1 ) ( 4 1 ) = 4 \binom{1}{1}\binom{4}{1}=4

Four of a kind: ( 5 1 ) ( 4 1 ) ( 4 1 ) = 80 \binom{5}{1}\binom{4}{1}\binom{4}{1}=80

Full house: ( 5 1 ) ( 4 3 ) ( 4 1 ) ( 4 2 ) = 480 \binom{5}{1}\binom{4}{3}\binom{4}{1}\binom{4}{2}=480

Straight (excluding straight flush): ( 1 1 ) ( 4 1 ) 5 ( 1 1 ) ( 4 1 ) = 1020 {\binom{1}{1}\binom{4}{1}}^5-\binom{1}{1}\binom{4}{1}=1020

Three of a kind: ( 5 1 ) ( 4 3 ) ( 4 2 ) ( 4 1 ) 2 = 1920 \binom{5}{1}\binom{4}{3}\binom{4}{2}{\binom{4}{1}}^2=1920

Two pair: ( 5 2 ) ( 4 2 ) 2 ( 3 1 ) ( 4 1 ) = 4320 \binom{5}{2}{\binom{4}{2}}^2\binom{3}{1}\binom{4}{1}=4320

Two of a kind: ( 5 1 ) ( 4 2 ) ( 4 3 ) ( 4 1 ) 3 = 7680 \binom{5}{1}\binom{4}{2}\binom{4}{3}{\binom{4}{1}}^3=7680

You can calculate the corresponding probabilities by dividing by 15504 15504 .

For the deck consisting of 32 cards, there are ( 32 5 ) = 201376 \binom{32}{5}=201376 possible hands of 5 cards. The number of combinations for each type of hand is as follows:

Straight flush (including royal flush): ( 4 1 ) ( 4 1 ) = 16 \binom{4}{1}\binom{4}{1}=16

Four of a kind: ( 8 1 ) ( 7 1 ) ( 4 1 ) = 224 \binom{8}{1}\binom{7}{1}\binom{4}{1}=224

Full house: ( 8 1 ) ( 4 3 ) ( 7 1 ) ( 4 2 ) = 1344 \binom{8}{1}\binom{4}{3}\binom{7}{1}\binom{4}{2}=1344

Flush (excluding straight flush): ( 4 1 ) ( 8 5 ) ( 4 1 ) ( 4 1 ) = 208 \binom{4}{1}\binom{8}{5}-\binom{4}{1}\binom{4}{1}=208

Straight (excluding straight flush): ( 4 1 ) ( 4 1 ) 5 ( 4 1 ) ( 4 1 ) = 4080 \binom{4}{1}{\binom{4}{1}}^5-\binom{4}{1}\binom{4}{1}=4080

Three of a kind: ( 8 1 ) ( 4 3 ) ( 7 2 ) ( 4 1 ) 2 = 10752 \binom{8}{1}\binom{4}{3}\binom{7}{2}{\binom{4}{1}}^2=10752

Two pair: ( 8 2 ) ( 4 2 ) 2 ( 6 1 ) ( 4 1 ) = 24192 \binom{8}{2}{\binom{4}{2}}^2\binom{6}{1}\binom{4}{1}=24192

Two of a kind: ( 8 1 ) ( 4 2 ) ( 7 3 ) ( 4 1 ) 3 = 107520 \binom{8}{1}\binom{4}{2}\binom{7}{3}{\binom{4}{1}}^3=107520

No pair/high card: [ ( 8 5 ) 4 ] [ ( 4 1 ) 5 4 ] = 53040 \left[\binom{8}{5}-4\right]\left[{\binom{4}{1}}^5-4\right]=53040

You can calculate the corresponding probabilities by dividing by 201376 201376 .

Your friend will always have higher cards, so if you have the same kind of hand, your friend will win. The probability to win with each type of hand is:

P ( P( you have that type of hand ) × P ( )\times P( your friend has a worse hand ) )

Summing these probabilities over each type of hand yields P 0.56625 P\approx0.56625 . Therefore 1000 P = 566 \lfloor1000P\rfloor=\boxed{566} .

'After soundly defeating your friend for several rounds in a row, you offer your friend the following handicap'. The first time I read that sentence, I assumed you would get the handicap, but the math suggests your friend is the one who receives the handicap.

Stefan van der Waal - 3 years, 7 months ago

Log in to reply

A handicap in the context of sports or games is a benefit given to an inferior player. I designed this problem so that it would seem like your friend is receiving the benefit (by getting all the higher cards). The surprise is that you are the one actually receiving the benefit (having fewer cards means you have a better chance to win, in spite of those cards being lower).

Andy Hayes - 3 years, 7 months ago
M D
Nov 2, 2016

Here is a python solution to this problem - https://github.com/moyi-d/poker/blob/master/poker.ipynb

The class "deck" calculates the number of possible combinations for each possible hand given a particular deck. You can create the deck by specifying the different ranks and suits that are in the deck, as well as, optionally, the highest and lowest cards if necessary. (i.e. specify 14 as Ace). You can calculate for a full deck, or the cut decks in the problem. See the notebook for more details. Running the notebook would give the answer to this problem.

0 pending reports

×

Problem Loading...

Note Loading...

Set Loading...