Find overlapping outcomes in independent draws












2












$begingroup$


I have an urn containing 100 numbered balls. I randomly draw 5 balls (5 %) in 5 individual draws with replacement.



How many unique balls do I get? I.e., what is the number of unique values?



I've written some R code to approximate it, but I have no idea how to do this in a more 'mathematical' way. E.g., a formula of some sort.



draw <- function(size){
n <- 1:size
sa <- lapply(1:5,function(x) sample(n,size*0.05))
length(unique(unlist(sa)))/size
}
mean(unlist(lapply(1:1000,function(x) draw(100)))) # ~0.226









share|cite|improve this question











$endgroup$












  • $begingroup$
    Are you after the expected number of unique values? If so, use indicator variables and linearity.
    $endgroup$
    – lulu
    Jan 27 at 17:20










  • $begingroup$
    Yes (edited question to clarify). Can you elaborate on your suggestion? I am not familiar with the terms.
    $endgroup$
    – leze
    Jan 27 at 17:56
















2












$begingroup$


I have an urn containing 100 numbered balls. I randomly draw 5 balls (5 %) in 5 individual draws with replacement.



How many unique balls do I get? I.e., what is the number of unique values?



I've written some R code to approximate it, but I have no idea how to do this in a more 'mathematical' way. E.g., a formula of some sort.



draw <- function(size){
n <- 1:size
sa <- lapply(1:5,function(x) sample(n,size*0.05))
length(unique(unlist(sa)))/size
}
mean(unlist(lapply(1:1000,function(x) draw(100)))) # ~0.226









share|cite|improve this question











$endgroup$












  • $begingroup$
    Are you after the expected number of unique values? If so, use indicator variables and linearity.
    $endgroup$
    – lulu
    Jan 27 at 17:20










  • $begingroup$
    Yes (edited question to clarify). Can you elaborate on your suggestion? I am not familiar with the terms.
    $endgroup$
    – leze
    Jan 27 at 17:56














2












2








2





$begingroup$


I have an urn containing 100 numbered balls. I randomly draw 5 balls (5 %) in 5 individual draws with replacement.



How many unique balls do I get? I.e., what is the number of unique values?



I've written some R code to approximate it, but I have no idea how to do this in a more 'mathematical' way. E.g., a formula of some sort.



draw <- function(size){
n <- 1:size
sa <- lapply(1:5,function(x) sample(n,size*0.05))
length(unique(unlist(sa)))/size
}
mean(unlist(lapply(1:1000,function(x) draw(100)))) # ~0.226









share|cite|improve this question











$endgroup$




I have an urn containing 100 numbered balls. I randomly draw 5 balls (5 %) in 5 individual draws with replacement.



How many unique balls do I get? I.e., what is the number of unique values?



I've written some R code to approximate it, but I have no idea how to do this in a more 'mathematical' way. E.g., a formula of some sort.



draw <- function(size){
n <- 1:size
sa <- lapply(1:5,function(x) sample(n,size*0.05))
length(unique(unlist(sa)))/size
}
mean(unlist(lapply(1:1000,function(x) draw(100)))) # ~0.226






probability combinatorics probability-theory problem-solving






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited Jan 27 at 20:03







leze

















asked Jan 27 at 17:19









lezeleze

134




134












  • $begingroup$
    Are you after the expected number of unique values? If so, use indicator variables and linearity.
    $endgroup$
    – lulu
    Jan 27 at 17:20










  • $begingroup$
    Yes (edited question to clarify). Can you elaborate on your suggestion? I am not familiar with the terms.
    $endgroup$
    – leze
    Jan 27 at 17:56


















  • $begingroup$
    Are you after the expected number of unique values? If so, use indicator variables and linearity.
    $endgroup$
    – lulu
    Jan 27 at 17:20










  • $begingroup$
    Yes (edited question to clarify). Can you elaborate on your suggestion? I am not familiar with the terms.
    $endgroup$
    – leze
    Jan 27 at 17:56
















$begingroup$
Are you after the expected number of unique values? If so, use indicator variables and linearity.
$endgroup$
– lulu
Jan 27 at 17:20




$begingroup$
Are you after the expected number of unique values? If so, use indicator variables and linearity.
$endgroup$
– lulu
Jan 27 at 17:20












$begingroup$
Yes (edited question to clarify). Can you elaborate on your suggestion? I am not familiar with the terms.
$endgroup$
– leze
Jan 27 at 17:56




$begingroup$
Yes (edited question to clarify). Can you elaborate on your suggestion? I am not familiar with the terms.
$endgroup$
– leze
Jan 27 at 17:56










1 Answer
1






active

oldest

votes


















0












$begingroup$

We will use Linearity of Expectation.



Toward that end, let $X_i$ denote the indicator variable for the $i^{th}$ ball. That is, $X_i=1$ if the $i^{th}$ ball is in your selection and $=0$ otherwise. The Linearity tell us that the answer we want, $E$, is $$E=Eleft[ sum X_iright]=sum E[X_i]=100times E[X_1]$$



Where, in the last equation, we used symmetry to conclude that all the $X_i$ have the same expected value.



To compute $E[X_1]$: note that this is simply $p$, the probability that we do in fact select ball $1$. The probability that we don't select it is $left(frac {99}{100}right)^5$ so $E[X_1]=p=1-left(frac {99}{100}right)^5approx .049$



It follows that our answer is $$Eapprox 4.9$$






share|cite|improve this answer











$endgroup$













    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%2f3089837%2ffind-overlapping-outcomes-in-independent-draws%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









    0












    $begingroup$

    We will use Linearity of Expectation.



    Toward that end, let $X_i$ denote the indicator variable for the $i^{th}$ ball. That is, $X_i=1$ if the $i^{th}$ ball is in your selection and $=0$ otherwise. The Linearity tell us that the answer we want, $E$, is $$E=Eleft[ sum X_iright]=sum E[X_i]=100times E[X_1]$$



    Where, in the last equation, we used symmetry to conclude that all the $X_i$ have the same expected value.



    To compute $E[X_1]$: note that this is simply $p$, the probability that we do in fact select ball $1$. The probability that we don't select it is $left(frac {99}{100}right)^5$ so $E[X_1]=p=1-left(frac {99}{100}right)^5approx .049$



    It follows that our answer is $$Eapprox 4.9$$






    share|cite|improve this answer











    $endgroup$


















      0












      $begingroup$

      We will use Linearity of Expectation.



      Toward that end, let $X_i$ denote the indicator variable for the $i^{th}$ ball. That is, $X_i=1$ if the $i^{th}$ ball is in your selection and $=0$ otherwise. The Linearity tell us that the answer we want, $E$, is $$E=Eleft[ sum X_iright]=sum E[X_i]=100times E[X_1]$$



      Where, in the last equation, we used symmetry to conclude that all the $X_i$ have the same expected value.



      To compute $E[X_1]$: note that this is simply $p$, the probability that we do in fact select ball $1$. The probability that we don't select it is $left(frac {99}{100}right)^5$ so $E[X_1]=p=1-left(frac {99}{100}right)^5approx .049$



      It follows that our answer is $$Eapprox 4.9$$






      share|cite|improve this answer











      $endgroup$
















        0












        0








        0





        $begingroup$

        We will use Linearity of Expectation.



        Toward that end, let $X_i$ denote the indicator variable for the $i^{th}$ ball. That is, $X_i=1$ if the $i^{th}$ ball is in your selection and $=0$ otherwise. The Linearity tell us that the answer we want, $E$, is $$E=Eleft[ sum X_iright]=sum E[X_i]=100times E[X_1]$$



        Where, in the last equation, we used symmetry to conclude that all the $X_i$ have the same expected value.



        To compute $E[X_1]$: note that this is simply $p$, the probability that we do in fact select ball $1$. The probability that we don't select it is $left(frac {99}{100}right)^5$ so $E[X_1]=p=1-left(frac {99}{100}right)^5approx .049$



        It follows that our answer is $$Eapprox 4.9$$






        share|cite|improve this answer











        $endgroup$



        We will use Linearity of Expectation.



        Toward that end, let $X_i$ denote the indicator variable for the $i^{th}$ ball. That is, $X_i=1$ if the $i^{th}$ ball is in your selection and $=0$ otherwise. The Linearity tell us that the answer we want, $E$, is $$E=Eleft[ sum X_iright]=sum E[X_i]=100times E[X_1]$$



        Where, in the last equation, we used symmetry to conclude that all the $X_i$ have the same expected value.



        To compute $E[X_1]$: note that this is simply $p$, the probability that we do in fact select ball $1$. The probability that we don't select it is $left(frac {99}{100}right)^5$ so $E[X_1]=p=1-left(frac {99}{100}right)^5approx .049$



        It follows that our answer is $$Eapprox 4.9$$







        share|cite|improve this answer














        share|cite|improve this answer



        share|cite|improve this answer








        edited Jan 27 at 18:32

























        answered Jan 27 at 18:11









        lulululu

        43.2k25080




        43.2k25080






























            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.




            draft saved


            draft discarded














            StackExchange.ready(
            function () {
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fmath.stackexchange.com%2fquestions%2f3089837%2ffind-overlapping-outcomes-in-independent-draws%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

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

            Npm cannot find a required file even through it is in the searched directory