5-Card Poker Two-Pair Probability Calculation
$begingroup$
Question: What is the probability that 5 cards dealt from a deck of 52 (without replacement) contain exactly two distinct pairs (meaning no full house)?
Solution: $$frac{binom{13}{2}binom{4}{2}binom{4}{2}binom{11}{1}binom{4}{1}}{binom{52}{5}} = 0.047539$$
Why doesn't ${13choose 1}{4choose 2}{12choose 1}{4choose 2}{11choose 1}{4choose 1}over{52choose 5}$ OR ${13choose 3}{4choose 2}{4choose 2}{4choose 1}over{52choose 5}$ work?
probability discrete-mathematics poker
$endgroup$
add a comment |
$begingroup$
Question: What is the probability that 5 cards dealt from a deck of 52 (without replacement) contain exactly two distinct pairs (meaning no full house)?
Solution: $$frac{binom{13}{2}binom{4}{2}binom{4}{2}binom{11}{1}binom{4}{1}}{binom{52}{5}} = 0.047539$$
Why doesn't ${13choose 1}{4choose 2}{12choose 1}{4choose 2}{11choose 1}{4choose 1}over{52choose 5}$ OR ${13choose 3}{4choose 2}{4choose 2}{4choose 1}over{52choose 5}$ work?
probability discrete-mathematics poker
$endgroup$
1
$begingroup$
You can obtain $binom{n}{k}$ by typing binom{n}{k} in math mode. Please read this tutorial on how to typeset mathematics on this site.
$endgroup$
– N. F. Taussig
Aug 29 '15 at 23:32
add a comment |
$begingroup$
Question: What is the probability that 5 cards dealt from a deck of 52 (without replacement) contain exactly two distinct pairs (meaning no full house)?
Solution: $$frac{binom{13}{2}binom{4}{2}binom{4}{2}binom{11}{1}binom{4}{1}}{binom{52}{5}} = 0.047539$$
Why doesn't ${13choose 1}{4choose 2}{12choose 1}{4choose 2}{11choose 1}{4choose 1}over{52choose 5}$ OR ${13choose 3}{4choose 2}{4choose 2}{4choose 1}over{52choose 5}$ work?
probability discrete-mathematics poker
$endgroup$
Question: What is the probability that 5 cards dealt from a deck of 52 (without replacement) contain exactly two distinct pairs (meaning no full house)?
Solution: $$frac{binom{13}{2}binom{4}{2}binom{4}{2}binom{11}{1}binom{4}{1}}{binom{52}{5}} = 0.047539$$
Why doesn't ${13choose 1}{4choose 2}{12choose 1}{4choose 2}{11choose 1}{4choose 1}over{52choose 5}$ OR ${13choose 3}{4choose 2}{4choose 2}{4choose 1}over{52choose 5}$ work?
probability discrete-mathematics poker
probability discrete-mathematics poker
edited Aug 30 '15 at 4:53
Graham Kemp
87.8k43578
87.8k43578
asked Aug 29 '15 at 23:05
Adam TachéAdam Taché
255
255
1
$begingroup$
You can obtain $binom{n}{k}$ by typing binom{n}{k} in math mode. Please read this tutorial on how to typeset mathematics on this site.
$endgroup$
– N. F. Taussig
Aug 29 '15 at 23:32
add a comment |
1
$begingroup$
You can obtain $binom{n}{k}$ by typing binom{n}{k} in math mode. Please read this tutorial on how to typeset mathematics on this site.
$endgroup$
– N. F. Taussig
Aug 29 '15 at 23:32
1
1
$begingroup$
You can obtain $binom{n}{k}$ by typing binom{n}{k} in math mode. Please read this tutorial on how to typeset mathematics on this site.
$endgroup$
– N. F. Taussig
Aug 29 '15 at 23:32
$begingroup$
You can obtain $binom{n}{k}$ by typing binom{n}{k} in math mode. Please read this tutorial on how to typeset mathematics on this site.
$endgroup$
– N. F. Taussig
Aug 29 '15 at 23:32
add a comment |
3 Answers
3
active
oldest
votes
$begingroup$
In your first alternative, you're overcounting. You could first choose two eights and then choose two sevens, or first choose two sevens and then choose two eights, and you'd be counting this as two different possibilities, but they yield the same hands.
In your second alternative, you're undercounting. You're just choosing three card values, but you're not saying which of them are pairs and which is the singlet, so even though $(7,7,8,8,9)$, $(7,7,8,9,9)$ and $(7,8,8,9,9)$ all yield different hands, you're counting all three as one.
$endgroup$
add a comment |
$begingroup$
Reduce your problem to counting a simple unique description of the hand. A hand with two pairs of different value can be described as selecting 2 values for the pairs out of 13, 2 suits out of 4 for the lesser pair, 2 suits out of 4 for the higher pair, the value of the fifth card out of the remaining 11 values, and its suit out of 4. Each of these is independent of the others. In all:
$$
binom{13}{2}
cdot binom{4}{2}
cdot binom{4}{2}
cdot binom{13 - 2}{1}
cdot binom{4}{1}
= 123,552
$$
Breaking down complex problems into such easy-to-count descriptions makes it easier to convince yourself (or others!) that no mistake snuck in
$endgroup$
add a comment |
$begingroup$
First, let's look the steps in the process of forming a 5-card hand pairs, say 2 eight and 2 aces:
- Choose two face values out of 13 possible face values for the pairs (eights and aces):
13 choose 2 = 78 - Choose two cards from the smaller face value (8(clubs), 8(spades)):
4 choose 2 = 6 - Choose two cards from the larger face value (A(spades),A(clubs));
4 choose 2 = 6 - Choose one card from those remaining (9(diamond)):
44 choose 1 = 44 (eliminating the 8 face cards already considered: 52-8=44)
By the product rule, H=78*6*6*44=123552
$endgroup$
$begingroup$
Welcome to MSE. Your answer adds nothing new to the already existing answers.
$endgroup$
– José Carlos Santos
Dec 13 '18 at 14:26
$begingroup$
Welcome to Math.SE. While your post is a clear enough explanation of applying the principle of dependent choices, the Question here was not so much about how to count the hands as it was about why the two alternative methods give different results. In any case when responding to a three year old Question with previous upvoted and/or Accepted Answers, it is a good practice to read those carefully in order to highlight what new information you are trying to add.
$endgroup$
– hardmath
Dec 13 '18 at 14:28
add a comment |
Your Answer
StackExchange.ifUsing("editor", function () {
return StackExchange.using("mathjaxEditing", function () {
StackExchange.MarkdownEditor.creationCallbacks.add(function (editor, postfix) {
StackExchange.mathjaxEditing.prepareWmdForMathJax(editor, postfix, [["$", "$"], ["\\(","\\)"]]);
});
});
}, "mathjax-editing");
StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "69"
};
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function() {
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled) {
StackExchange.using("snippets", function() {
createEditor();
});
}
else {
createEditor();
}
});
function createEditor() {
StackExchange.prepareEditor({
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader: {
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
},
noCode: true, onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
});
}
});
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f1414112%2f5-card-poker-two-pair-probability-calculation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
3 Answers
3
active
oldest
votes
3 Answers
3
active
oldest
votes
active
oldest
votes
active
oldest
votes
$begingroup$
In your first alternative, you're overcounting. You could first choose two eights and then choose two sevens, or first choose two sevens and then choose two eights, and you'd be counting this as two different possibilities, but they yield the same hands.
In your second alternative, you're undercounting. You're just choosing three card values, but you're not saying which of them are pairs and which is the singlet, so even though $(7,7,8,8,9)$, $(7,7,8,9,9)$ and $(7,8,8,9,9)$ all yield different hands, you're counting all three as one.
$endgroup$
add a comment |
$begingroup$
In your first alternative, you're overcounting. You could first choose two eights and then choose two sevens, or first choose two sevens and then choose two eights, and you'd be counting this as two different possibilities, but they yield the same hands.
In your second alternative, you're undercounting. You're just choosing three card values, but you're not saying which of them are pairs and which is the singlet, so even though $(7,7,8,8,9)$, $(7,7,8,9,9)$ and $(7,8,8,9,9)$ all yield different hands, you're counting all three as one.
$endgroup$
add a comment |
$begingroup$
In your first alternative, you're overcounting. You could first choose two eights and then choose two sevens, or first choose two sevens and then choose two eights, and you'd be counting this as two different possibilities, but they yield the same hands.
In your second alternative, you're undercounting. You're just choosing three card values, but you're not saying which of them are pairs and which is the singlet, so even though $(7,7,8,8,9)$, $(7,7,8,9,9)$ and $(7,8,8,9,9)$ all yield different hands, you're counting all three as one.
$endgroup$
In your first alternative, you're overcounting. You could first choose two eights and then choose two sevens, or first choose two sevens and then choose two eights, and you'd be counting this as two different possibilities, but they yield the same hands.
In your second alternative, you're undercounting. You're just choosing three card values, but you're not saying which of them are pairs and which is the singlet, so even though $(7,7,8,8,9)$, $(7,7,8,9,9)$ and $(7,8,8,9,9)$ all yield different hands, you're counting all three as one.
answered Aug 29 '15 at 23:17
jorikijoriki
171k10189351
171k10189351
add a comment |
add a comment |
$begingroup$
Reduce your problem to counting a simple unique description of the hand. A hand with two pairs of different value can be described as selecting 2 values for the pairs out of 13, 2 suits out of 4 for the lesser pair, 2 suits out of 4 for the higher pair, the value of the fifth card out of the remaining 11 values, and its suit out of 4. Each of these is independent of the others. In all:
$$
binom{13}{2}
cdot binom{4}{2}
cdot binom{4}{2}
cdot binom{13 - 2}{1}
cdot binom{4}{1}
= 123,552
$$
Breaking down complex problems into such easy-to-count descriptions makes it easier to convince yourself (or others!) that no mistake snuck in
$endgroup$
add a comment |
$begingroup$
Reduce your problem to counting a simple unique description of the hand. A hand with two pairs of different value can be described as selecting 2 values for the pairs out of 13, 2 suits out of 4 for the lesser pair, 2 suits out of 4 for the higher pair, the value of the fifth card out of the remaining 11 values, and its suit out of 4. Each of these is independent of the others. In all:
$$
binom{13}{2}
cdot binom{4}{2}
cdot binom{4}{2}
cdot binom{13 - 2}{1}
cdot binom{4}{1}
= 123,552
$$
Breaking down complex problems into such easy-to-count descriptions makes it easier to convince yourself (or others!) that no mistake snuck in
$endgroup$
add a comment |
$begingroup$
Reduce your problem to counting a simple unique description of the hand. A hand with two pairs of different value can be described as selecting 2 values for the pairs out of 13, 2 suits out of 4 for the lesser pair, 2 suits out of 4 for the higher pair, the value of the fifth card out of the remaining 11 values, and its suit out of 4. Each of these is independent of the others. In all:
$$
binom{13}{2}
cdot binom{4}{2}
cdot binom{4}{2}
cdot binom{13 - 2}{1}
cdot binom{4}{1}
= 123,552
$$
Breaking down complex problems into such easy-to-count descriptions makes it easier to convince yourself (or others!) that no mistake snuck in
$endgroup$
Reduce your problem to counting a simple unique description of the hand. A hand with two pairs of different value can be described as selecting 2 values for the pairs out of 13, 2 suits out of 4 for the lesser pair, 2 suits out of 4 for the higher pair, the value of the fifth card out of the remaining 11 values, and its suit out of 4. Each of these is independent of the others. In all:
$$
binom{13}{2}
cdot binom{4}{2}
cdot binom{4}{2}
cdot binom{13 - 2}{1}
cdot binom{4}{1}
= 123,552
$$
Breaking down complex problems into such easy-to-count descriptions makes it easier to convince yourself (or others!) that no mistake snuck in
answered Sep 1 '15 at 12:59
vonbrandvonbrand
20k63260
20k63260
add a comment |
add a comment |
$begingroup$
First, let's look the steps in the process of forming a 5-card hand pairs, say 2 eight and 2 aces:
- Choose two face values out of 13 possible face values for the pairs (eights and aces):
13 choose 2 = 78 - Choose two cards from the smaller face value (8(clubs), 8(spades)):
4 choose 2 = 6 - Choose two cards from the larger face value (A(spades),A(clubs));
4 choose 2 = 6 - Choose one card from those remaining (9(diamond)):
44 choose 1 = 44 (eliminating the 8 face cards already considered: 52-8=44)
By the product rule, H=78*6*6*44=123552
$endgroup$
$begingroup$
Welcome to MSE. Your answer adds nothing new to the already existing answers.
$endgroup$
– José Carlos Santos
Dec 13 '18 at 14:26
$begingroup$
Welcome to Math.SE. While your post is a clear enough explanation of applying the principle of dependent choices, the Question here was not so much about how to count the hands as it was about why the two alternative methods give different results. In any case when responding to a three year old Question with previous upvoted and/or Accepted Answers, it is a good practice to read those carefully in order to highlight what new information you are trying to add.
$endgroup$
– hardmath
Dec 13 '18 at 14:28
add a comment |
$begingroup$
First, let's look the steps in the process of forming a 5-card hand pairs, say 2 eight and 2 aces:
- Choose two face values out of 13 possible face values for the pairs (eights and aces):
13 choose 2 = 78 - Choose two cards from the smaller face value (8(clubs), 8(spades)):
4 choose 2 = 6 - Choose two cards from the larger face value (A(spades),A(clubs));
4 choose 2 = 6 - Choose one card from those remaining (9(diamond)):
44 choose 1 = 44 (eliminating the 8 face cards already considered: 52-8=44)
By the product rule, H=78*6*6*44=123552
$endgroup$
$begingroup$
Welcome to MSE. Your answer adds nothing new to the already existing answers.
$endgroup$
– José Carlos Santos
Dec 13 '18 at 14:26
$begingroup$
Welcome to Math.SE. While your post is a clear enough explanation of applying the principle of dependent choices, the Question here was not so much about how to count the hands as it was about why the two alternative methods give different results. In any case when responding to a three year old Question with previous upvoted and/or Accepted Answers, it is a good practice to read those carefully in order to highlight what new information you are trying to add.
$endgroup$
– hardmath
Dec 13 '18 at 14:28
add a comment |
$begingroup$
First, let's look the steps in the process of forming a 5-card hand pairs, say 2 eight and 2 aces:
- Choose two face values out of 13 possible face values for the pairs (eights and aces):
13 choose 2 = 78 - Choose two cards from the smaller face value (8(clubs), 8(spades)):
4 choose 2 = 6 - Choose two cards from the larger face value (A(spades),A(clubs));
4 choose 2 = 6 - Choose one card from those remaining (9(diamond)):
44 choose 1 = 44 (eliminating the 8 face cards already considered: 52-8=44)
By the product rule, H=78*6*6*44=123552
$endgroup$
First, let's look the steps in the process of forming a 5-card hand pairs, say 2 eight and 2 aces:
- Choose two face values out of 13 possible face values for the pairs (eights and aces):
13 choose 2 = 78 - Choose two cards from the smaller face value (8(clubs), 8(spades)):
4 choose 2 = 6 - Choose two cards from the larger face value (A(spades),A(clubs));
4 choose 2 = 6 - Choose one card from those remaining (9(diamond)):
44 choose 1 = 44 (eliminating the 8 face cards already considered: 52-8=44)
By the product rule, H=78*6*6*44=123552
answered Dec 13 '18 at 14:08
Shamsul HudaShamsul Huda
12
12
$begingroup$
Welcome to MSE. Your answer adds nothing new to the already existing answers.
$endgroup$
– José Carlos Santos
Dec 13 '18 at 14:26
$begingroup$
Welcome to Math.SE. While your post is a clear enough explanation of applying the principle of dependent choices, the Question here was not so much about how to count the hands as it was about why the two alternative methods give different results. In any case when responding to a three year old Question with previous upvoted and/or Accepted Answers, it is a good practice to read those carefully in order to highlight what new information you are trying to add.
$endgroup$
– hardmath
Dec 13 '18 at 14:28
add a comment |
$begingroup$
Welcome to MSE. Your answer adds nothing new to the already existing answers.
$endgroup$
– José Carlos Santos
Dec 13 '18 at 14:26
$begingroup$
Welcome to Math.SE. While your post is a clear enough explanation of applying the principle of dependent choices, the Question here was not so much about how to count the hands as it was about why the two alternative methods give different results. In any case when responding to a three year old Question with previous upvoted and/or Accepted Answers, it is a good practice to read those carefully in order to highlight what new information you are trying to add.
$endgroup$
– hardmath
Dec 13 '18 at 14:28
$begingroup$
Welcome to MSE. Your answer adds nothing new to the already existing answers.
$endgroup$
– José Carlos Santos
Dec 13 '18 at 14:26
$begingroup$
Welcome to MSE. Your answer adds nothing new to the already existing answers.
$endgroup$
– José Carlos Santos
Dec 13 '18 at 14:26
$begingroup$
Welcome to Math.SE. While your post is a clear enough explanation of applying the principle of dependent choices, the Question here was not so much about how to count the hands as it was about why the two alternative methods give different results. In any case when responding to a three year old Question with previous upvoted and/or Accepted Answers, it is a good practice to read those carefully in order to highlight what new information you are trying to add.
$endgroup$
– hardmath
Dec 13 '18 at 14:28
$begingroup$
Welcome to Math.SE. While your post is a clear enough explanation of applying the principle of dependent choices, the Question here was not so much about how to count the hands as it was about why the two alternative methods give different results. In any case when responding to a three year old Question with previous upvoted and/or Accepted Answers, it is a good practice to read those carefully in order to highlight what new information you are trying to add.
$endgroup$
– hardmath
Dec 13 '18 at 14:28
add a comment |
Thanks for contributing an answer to Mathematics Stack Exchange!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
Use MathJax to format equations. MathJax reference.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function () {
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f1414112%2f5-card-poker-two-pair-probability-calculation%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function () {
StackExchange.helpers.onClickDraftSave('#login-link');
});
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
1
$begingroup$
You can obtain $binom{n}{k}$ by typing binom{n}{k} in math mode. Please read this tutorial on how to typeset mathematics on this site.
$endgroup$
– N. F. Taussig
Aug 29 '15 at 23:32