Drawing Cards and Expected Value












0














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.




  1. How many cards must be drawn before you can expect a certain card (e.g. 7) to be drawn?


  2. How many cards must be drawn before you can expect two specific cards (e.g. 3 and 5) to be drawn (order is irrelevant)?


  3. 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.










share|cite|improve this question



























    0














    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.




    1. How many cards must be drawn before you can expect a certain card (e.g. 7) to be drawn?


    2. How many cards must be drawn before you can expect two specific cards (e.g. 3 and 5) to be drawn (order is irrelevant)?


    3. 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.










    share|cite|improve this question

























      0












      0








      0







      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.




      1. How many cards must be drawn before you can expect a certain card (e.g. 7) to be drawn?


      2. How many cards must be drawn before you can expect two specific cards (e.g. 3 and 5) to be drawn (order is irrelevant)?


      3. 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.










      share|cite|improve this question













      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.




      1. How many cards must be drawn before you can expect a certain card (e.g. 7) to be drawn?


      2. How many cards must be drawn before you can expect two specific cards (e.g. 3 and 5) to be drawn (order is irrelevant)?


      3. 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






      share|cite|improve this question













      share|cite|improve this question











      share|cite|improve this question




      share|cite|improve this question










      asked Nov 20 '18 at 16:41









      Xiis

      1




      1






















          1 Answer
          1






          active

          oldest

          votes


















          1














          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.






          share|cite|improve this answer





















            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
            });


            }
            });














            draft saved

            draft discarded


















            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









            1














            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.






            share|cite|improve this answer


























              1














              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.






              share|cite|improve this answer
























                1












                1








                1






                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.






                share|cite|improve this answer












                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.







                share|cite|improve this answer












                share|cite|improve this answer



                share|cite|improve this answer










                answered Nov 20 '18 at 16:58









                Robert Israel

                318k23208457




                318k23208457






























                    draft saved

                    draft discarded




















































                    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.




                    draft saved


                    draft discarded














                    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





















































                    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







                    Popular posts from this blog

                    MongoDB - Not Authorized To Execute Command

                    How to fix TextFormField cause rebuild widget in Flutter

                    in spring boot 2.1 many test slices are not allowed anymore due to multiple @BootstrapWith