Drawing Cards and Expected Value
In many strategic board games, there is a stack of cards with events. I'm interested in the number of cards that need to be drawn until you can expect a certain card or a combination of certain cards to occur.
The following example: There is a deck with 20 unique cards (e.g. 1 - 20), drawn without returning.
How many cards must be drawn before you can expect a certain card (e.g. 7) to be drawn?
How many cards must be drawn before you can expect two specific cards (e.g. 3 and 5) to be drawn (order is irrelevant)?
how many cards must be drawn before you can expect (1) OR (2) to occur ?
As far as I understand from this related question the solution of (1) should be:
$$1 + frac{19}{2} = 10.5$$
Is this correct and how about (2) and (3)?
Thanks for helping.
probability card-games expected-value
add a comment |
In many strategic board games, there is a stack of cards with events. I'm interested in the number of cards that need to be drawn until you can expect a certain card or a combination of certain cards to occur.
The following example: There is a deck with 20 unique cards (e.g. 1 - 20), drawn without returning.
How many cards must be drawn before you can expect a certain card (e.g. 7) to be drawn?
How many cards must be drawn before you can expect two specific cards (e.g. 3 and 5) to be drawn (order is irrelevant)?
how many cards must be drawn before you can expect (1) OR (2) to occur ?
As far as I understand from this related question the solution of (1) should be:
$$1 + frac{19}{2} = 10.5$$
Is this correct and how about (2) and (3)?
Thanks for helping.
probability card-games expected-value
add a comment |
In many strategic board games, there is a stack of cards with events. I'm interested in the number of cards that need to be drawn until you can expect a certain card or a combination of certain cards to occur.
The following example: There is a deck with 20 unique cards (e.g. 1 - 20), drawn without returning.
How many cards must be drawn before you can expect a certain card (e.g. 7) to be drawn?
How many cards must be drawn before you can expect two specific cards (e.g. 3 and 5) to be drawn (order is irrelevant)?
how many cards must be drawn before you can expect (1) OR (2) to occur ?
As far as I understand from this related question the solution of (1) should be:
$$1 + frac{19}{2} = 10.5$$
Is this correct and how about (2) and (3)?
Thanks for helping.
probability card-games expected-value
In many strategic board games, there is a stack of cards with events. I'm interested in the number of cards that need to be drawn until you can expect a certain card or a combination of certain cards to occur.
The following example: There is a deck with 20 unique cards (e.g. 1 - 20), drawn without returning.
How many cards must be drawn before you can expect a certain card (e.g. 7) to be drawn?
How many cards must be drawn before you can expect two specific cards (e.g. 3 and 5) to be drawn (order is irrelevant)?
how many cards must be drawn before you can expect (1) OR (2) to occur ?
As far as I understand from this related question the solution of (1) should be:
$$1 + frac{19}{2} = 10.5$$
Is this correct and how about (2) and (3)?
Thanks for helping.
probability card-games expected-value
probability card-games expected-value
asked Nov 20 '18 at 16:41
Xiis
1
1
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Suppose your deck has $n$ cards, and you are interested in the expected number of draws until a particular card is drawn. Call this $u(n)$. We condition on the result of the first draw. With probability $1/n$, it is your target, and you are done. With probability $1 - 1/n$, it is not your target: you are now in the same situation as before except that you have a deck of $n-1$ instead of $n$. Thus we have the recursion equation
$$ u(n) = 1 + frac{n-1}{n} u(n-1) $$
The solution of this with initial condition $u(1)=1$ is
$$ u(n) = frac{n+1}{2}$$
Now consider case (2) where you are waiting for two specific cards to be
drawn. Let $v(n)$ be the expected number of draws here. With probability $2/n$, the result of the first draw is one of your two target cards; the expected number of additional draws you need is then $u(n-1)$. With probability $1-2/n$, it is not one of your targets, and then your expected number of additional draws is $v(n-1)$. Thus we have the recursion
$$ v(n) = 1 + frac{2}{n} u(n-1) + frac{n-2}{n} v(n-1) $$
With initial condition $v(2)=2$, the solution is
$$ v(n) = frac{2n+2}{3} $$
I'll leave case (3) to you to figure out.
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%2f3006551%2fdrawing-cards-and-expected-value%23new-answer', 'question_page');
}
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Suppose your deck has $n$ cards, and you are interested in the expected number of draws until a particular card is drawn. Call this $u(n)$. We condition on the result of the first draw. With probability $1/n$, it is your target, and you are done. With probability $1 - 1/n$, it is not your target: you are now in the same situation as before except that you have a deck of $n-1$ instead of $n$. Thus we have the recursion equation
$$ u(n) = 1 + frac{n-1}{n} u(n-1) $$
The solution of this with initial condition $u(1)=1$ is
$$ u(n) = frac{n+1}{2}$$
Now consider case (2) where you are waiting for two specific cards to be
drawn. Let $v(n)$ be the expected number of draws here. With probability $2/n$, the result of the first draw is one of your two target cards; the expected number of additional draws you need is then $u(n-1)$. With probability $1-2/n$, it is not one of your targets, and then your expected number of additional draws is $v(n-1)$. Thus we have the recursion
$$ v(n) = 1 + frac{2}{n} u(n-1) + frac{n-2}{n} v(n-1) $$
With initial condition $v(2)=2$, the solution is
$$ v(n) = frac{2n+2}{3} $$
I'll leave case (3) to you to figure out.
add a comment |
Suppose your deck has $n$ cards, and you are interested in the expected number of draws until a particular card is drawn. Call this $u(n)$. We condition on the result of the first draw. With probability $1/n$, it is your target, and you are done. With probability $1 - 1/n$, it is not your target: you are now in the same situation as before except that you have a deck of $n-1$ instead of $n$. Thus we have the recursion equation
$$ u(n) = 1 + frac{n-1}{n} u(n-1) $$
The solution of this with initial condition $u(1)=1$ is
$$ u(n) = frac{n+1}{2}$$
Now consider case (2) where you are waiting for two specific cards to be
drawn. Let $v(n)$ be the expected number of draws here. With probability $2/n$, the result of the first draw is one of your two target cards; the expected number of additional draws you need is then $u(n-1)$. With probability $1-2/n$, it is not one of your targets, and then your expected number of additional draws is $v(n-1)$. Thus we have the recursion
$$ v(n) = 1 + frac{2}{n} u(n-1) + frac{n-2}{n} v(n-1) $$
With initial condition $v(2)=2$, the solution is
$$ v(n) = frac{2n+2}{3} $$
I'll leave case (3) to you to figure out.
add a comment |
Suppose your deck has $n$ cards, and you are interested in the expected number of draws until a particular card is drawn. Call this $u(n)$. We condition on the result of the first draw. With probability $1/n$, it is your target, and you are done. With probability $1 - 1/n$, it is not your target: you are now in the same situation as before except that you have a deck of $n-1$ instead of $n$. Thus we have the recursion equation
$$ u(n) = 1 + frac{n-1}{n} u(n-1) $$
The solution of this with initial condition $u(1)=1$ is
$$ u(n) = frac{n+1}{2}$$
Now consider case (2) where you are waiting for two specific cards to be
drawn. Let $v(n)$ be the expected number of draws here. With probability $2/n$, the result of the first draw is one of your two target cards; the expected number of additional draws you need is then $u(n-1)$. With probability $1-2/n$, it is not one of your targets, and then your expected number of additional draws is $v(n-1)$. Thus we have the recursion
$$ v(n) = 1 + frac{2}{n} u(n-1) + frac{n-2}{n} v(n-1) $$
With initial condition $v(2)=2$, the solution is
$$ v(n) = frac{2n+2}{3} $$
I'll leave case (3) to you to figure out.
Suppose your deck has $n$ cards, and you are interested in the expected number of draws until a particular card is drawn. Call this $u(n)$. We condition on the result of the first draw. With probability $1/n$, it is your target, and you are done. With probability $1 - 1/n$, it is not your target: you are now in the same situation as before except that you have a deck of $n-1$ instead of $n$. Thus we have the recursion equation
$$ u(n) = 1 + frac{n-1}{n} u(n-1) $$
The solution of this with initial condition $u(1)=1$ is
$$ u(n) = frac{n+1}{2}$$
Now consider case (2) where you are waiting for two specific cards to be
drawn. Let $v(n)$ be the expected number of draws here. With probability $2/n$, the result of the first draw is one of your two target cards; the expected number of additional draws you need is then $u(n-1)$. With probability $1-2/n$, it is not one of your targets, and then your expected number of additional draws is $v(n-1)$. Thus we have the recursion
$$ v(n) = 1 + frac{2}{n} u(n-1) + frac{n-2}{n} v(n-1) $$
With initial condition $v(2)=2$, the solution is
$$ v(n) = frac{2n+2}{3} $$
I'll leave case (3) to you to figure out.
answered Nov 20 '18 at 16:58
Robert Israel
318k23208457
318k23208457
add a comment |
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.
Some of your past answers have not been well-received, and you're in danger of being blocked from answering.
Please pay close attention to the following guidance:
- 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.
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%2f3006551%2fdrawing-cards-and-expected-value%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