Coin Tossings probability

The name of the pictureThe name of the pictureThe name of the pictureClash Royale CLAN TAG#URR8PPP





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty margin-bottom:0;







up vote
1
down vote

favorite












I want to find the probability that in ten tossings a coin falls heads at least five times in succession. Is there any formula to compute this probability?



Answer provided is $frac72^6$










share|cite|improve this question























  • Is it a homework?
    – Tim♦
    1 hour ago










  • @Tim You may say it is homework. Because I have taken this question from Williams Feller's book on Probability.
    – Dhamnekar Winod
    1 hour ago
















up vote
1
down vote

favorite












I want to find the probability that in ten tossings a coin falls heads at least five times in succession. Is there any formula to compute this probability?



Answer provided is $frac72^6$










share|cite|improve this question























  • Is it a homework?
    – Tim♦
    1 hour ago










  • @Tim You may say it is homework. Because I have taken this question from Williams Feller's book on Probability.
    – Dhamnekar Winod
    1 hour ago












up vote
1
down vote

favorite









up vote
1
down vote

favorite











I want to find the probability that in ten tossings a coin falls heads at least five times in succession. Is there any formula to compute this probability?



Answer provided is $frac72^6$










share|cite|improve this question















I want to find the probability that in ten tossings a coin falls heads at least five times in succession. Is there any formula to compute this probability?



Answer provided is $frac72^6$







probability self-study combinatorics






share|cite|improve this question















share|cite|improve this question













share|cite|improve this question




share|cite|improve this question








edited 1 hour ago

























asked 1 hour ago









Dhamnekar Winod

361210




361210











  • Is it a homework?
    – Tim♦
    1 hour ago










  • @Tim You may say it is homework. Because I have taken this question from Williams Feller's book on Probability.
    – Dhamnekar Winod
    1 hour ago
















  • Is it a homework?
    – Tim♦
    1 hour ago










  • @Tim You may say it is homework. Because I have taken this question from Williams Feller's book on Probability.
    – Dhamnekar Winod
    1 hour ago















Is it a homework?
– Tim♦
1 hour ago




Is it a homework?
– Tim♦
1 hour ago












@Tim You may say it is homework. Because I have taken this question from Williams Feller's book on Probability.
– Dhamnekar Winod
1 hour ago




@Tim You may say it is homework. Because I have taken this question from Williams Feller's book on Probability.
– Dhamnekar Winod
1 hour ago










2 Answers
2






active

oldest

votes

















up vote
2
down vote













During writing this answer I saw that the question has already been answered but I will post my solution nonetheless.



The options are:



$(X,X,X,X,X,-,-,-,-,)$



$(-,X,X,X,X,X,-,-,-,-,)$



$(-,-,X,X,X,X,X,-,-,-,)$



$(-,-,-,X,X,X,X,X,-,-)$



$(-,-,-,-,X,X,X,X,X,-)$



$(-,-,-,-,-,X,X,X,X,X)$



where $X$ denotes heads and $-$ is a placeholder.



  1. Line: there are $2^5$ options of obtaining at least those 5 heads at the first 5 tosses: $2^5$


  2. Line: There are $2^4$ possibilities for the last 4, but only 1 for the first (which must be tails) because if the first was $X$ we would be in line 1: therefore $2^4$


  3. Line: There are $2^3$ possibilities for the last three, but we can vary only the first one, the second one has to be tails as otherwise we are again in one of the upper cases: $2^3cdot 2^1$


  4. Line: There are $2^2$ for the last two and $2^2$ for the first 3, as we can vary the first and the second one without falling into one of the upper cases (the fourth one being tails again)


  5. Line: $2^1$ for the last one and $2^3$ for the first, the second and the third


  6. Line: We can vary the first, second, third and fourth arbitrarily (as long as fifth is tails) without falling into the upper cases.


therefore we obtain $$frac2^5+5cdot2^42^10= frac72^6$$






share|cite|improve this answer



























    up vote
    1
    down vote













    Corrected answer after Orangetree pointed out I forgot to take into account events were not mutually exclusive.



    You need to think about how many different coin tossing sequences give at least $5$ consecutive heads, and how many coin tossing sequences there are in total, and then take the ratio of the two.



    Clearly there is $2^10$ coin tossing sequences in total, since each of $10$ coins have $2$ possible outcomes.



    To see how many sequences have $5$ consecutive heads consider the following. In any sequence



    $$X-X-X-X-X-X-X-X-X-X$$



    We can put the $5$ consecutive heads in $5$ places. This can be seen by putting it at the start of thee sequence, and then moving it over step by step.



    $$H-H-H-H-H-X-X-X-X-X$$
    $$X-H-H-H-H-H-X-X-X-X$$
    $$X-X-H-H-H-H-H-X-X-X$$
    $$X-X-X-H-H-H-H-H-X-X$$
    $$X-X-X-X-H-H-H-H-H-X$$
    $$X-X-X-X-X-H-H-H-H-H$$



    For the first scenario, we have $2^5$ possible sequences since the remaining coins can be either heads or tails without affecting the result.



    For the second scenario, we can only take $2^4$ since we need to fix the first coin as tails to avoid counting sequences more than once.



    Similarly, for the third scenario we can count $2^4$ un-counted sequences, as we fix the coin preceeding the sequence as tails.. and so on



    This gives total number of ways



    $$2^5 + 2^4 + 2^4 + 2^4 + 2^4 + 2^4 = 2^4(2+1+1+1+1+1) = 2^4times 7$$



    Hence the probability should be



    $$frac2^4 times 72^10 = frac72^6$$



    To actually answer your question if a general formula exists, the reasoning above can be extended to give the probability of at least $m$ heads out of $n$ coin tosses as



    $$frac2^m-1(2+(n-m))2^n = frac2+n-m2^n-m+1$$






    share|cite|improve this answer










    New contributor




    Xiaomi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
    Check out our Code of Conduct.

















    • Not "five times in succession". At least five times in succession.
      – Alvaro Fuentes
      1 hour ago






    • 2




      Why would that affect the result? The remaining 5 coins can also be heads. The above gives the probability of at least 5 heads, not 5 heads exactly.
      – Xiaomi
      1 hour ago











    • the events are not mutually exclusive so you cannot simply add their probabilities
      – 0rangetree
      58 mins ago










    • Oh I see your logic. But you're counting some results more than once, as @0rangetree points out.
      – Alvaro Fuentes
      56 mins ago










    • Oh I see now. Thanks @0rangetree
      – Xiaomi
      56 mins ago










    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: "65"
    ;
    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',
    convertImagesToLinks: false,
    noModals: false,
    showLowRepImageUploadWarning: true,
    reputationToPostImages: null,
    bindNavPrevention: true,
    postfix: "",
    onDemand: true,
    discardSelector: ".discard-answer"
    ,immediatelyShowMarkdownHelp:true
    );



    );













     

    draft saved


    draft discarded


















    StackExchange.ready(
    function ()
    StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f369157%2fcoin-tossings-probability%23new-answer', 'question_page');

    );

    Post as a guest






























    2 Answers
    2






    active

    oldest

    votes








    2 Answers
    2






    active

    oldest

    votes









    active

    oldest

    votes






    active

    oldest

    votes








    up vote
    2
    down vote













    During writing this answer I saw that the question has already been answered but I will post my solution nonetheless.



    The options are:



    $(X,X,X,X,X,-,-,-,-,)$



    $(-,X,X,X,X,X,-,-,-,-,)$



    $(-,-,X,X,X,X,X,-,-,-,)$



    $(-,-,-,X,X,X,X,X,-,-)$



    $(-,-,-,-,X,X,X,X,X,-)$



    $(-,-,-,-,-,X,X,X,X,X)$



    where $X$ denotes heads and $-$ is a placeholder.



    1. Line: there are $2^5$ options of obtaining at least those 5 heads at the first 5 tosses: $2^5$


    2. Line: There are $2^4$ possibilities for the last 4, but only 1 for the first (which must be tails) because if the first was $X$ we would be in line 1: therefore $2^4$


    3. Line: There are $2^3$ possibilities for the last three, but we can vary only the first one, the second one has to be tails as otherwise we are again in one of the upper cases: $2^3cdot 2^1$


    4. Line: There are $2^2$ for the last two and $2^2$ for the first 3, as we can vary the first and the second one without falling into one of the upper cases (the fourth one being tails again)


    5. Line: $2^1$ for the last one and $2^3$ for the first, the second and the third


    6. Line: We can vary the first, second, third and fourth arbitrarily (as long as fifth is tails) without falling into the upper cases.


    therefore we obtain $$frac2^5+5cdot2^42^10= frac72^6$$






    share|cite|improve this answer
























      up vote
      2
      down vote













      During writing this answer I saw that the question has already been answered but I will post my solution nonetheless.



      The options are:



      $(X,X,X,X,X,-,-,-,-,)$



      $(-,X,X,X,X,X,-,-,-,-,)$



      $(-,-,X,X,X,X,X,-,-,-,)$



      $(-,-,-,X,X,X,X,X,-,-)$



      $(-,-,-,-,X,X,X,X,X,-)$



      $(-,-,-,-,-,X,X,X,X,X)$



      where $X$ denotes heads and $-$ is a placeholder.



      1. Line: there are $2^5$ options of obtaining at least those 5 heads at the first 5 tosses: $2^5$


      2. Line: There are $2^4$ possibilities for the last 4, but only 1 for the first (which must be tails) because if the first was $X$ we would be in line 1: therefore $2^4$


      3. Line: There are $2^3$ possibilities for the last three, but we can vary only the first one, the second one has to be tails as otherwise we are again in one of the upper cases: $2^3cdot 2^1$


      4. Line: There are $2^2$ for the last two and $2^2$ for the first 3, as we can vary the first and the second one without falling into one of the upper cases (the fourth one being tails again)


      5. Line: $2^1$ for the last one and $2^3$ for the first, the second and the third


      6. Line: We can vary the first, second, third and fourth arbitrarily (as long as fifth is tails) without falling into the upper cases.


      therefore we obtain $$frac2^5+5cdot2^42^10= frac72^6$$






      share|cite|improve this answer






















        up vote
        2
        down vote










        up vote
        2
        down vote









        During writing this answer I saw that the question has already been answered but I will post my solution nonetheless.



        The options are:



        $(X,X,X,X,X,-,-,-,-,)$



        $(-,X,X,X,X,X,-,-,-,-,)$



        $(-,-,X,X,X,X,X,-,-,-,)$



        $(-,-,-,X,X,X,X,X,-,-)$



        $(-,-,-,-,X,X,X,X,X,-)$



        $(-,-,-,-,-,X,X,X,X,X)$



        where $X$ denotes heads and $-$ is a placeholder.



        1. Line: there are $2^5$ options of obtaining at least those 5 heads at the first 5 tosses: $2^5$


        2. Line: There are $2^4$ possibilities for the last 4, but only 1 for the first (which must be tails) because if the first was $X$ we would be in line 1: therefore $2^4$


        3. Line: There are $2^3$ possibilities for the last three, but we can vary only the first one, the second one has to be tails as otherwise we are again in one of the upper cases: $2^3cdot 2^1$


        4. Line: There are $2^2$ for the last two and $2^2$ for the first 3, as we can vary the first and the second one without falling into one of the upper cases (the fourth one being tails again)


        5. Line: $2^1$ for the last one and $2^3$ for the first, the second and the third


        6. Line: We can vary the first, second, third and fourth arbitrarily (as long as fifth is tails) without falling into the upper cases.


        therefore we obtain $$frac2^5+5cdot2^42^10= frac72^6$$






        share|cite|improve this answer












        During writing this answer I saw that the question has already been answered but I will post my solution nonetheless.



        The options are:



        $(X,X,X,X,X,-,-,-,-,)$



        $(-,X,X,X,X,X,-,-,-,-,)$



        $(-,-,X,X,X,X,X,-,-,-,)$



        $(-,-,-,X,X,X,X,X,-,-)$



        $(-,-,-,-,X,X,X,X,X,-)$



        $(-,-,-,-,-,X,X,X,X,X)$



        where $X$ denotes heads and $-$ is a placeholder.



        1. Line: there are $2^5$ options of obtaining at least those 5 heads at the first 5 tosses: $2^5$


        2. Line: There are $2^4$ possibilities for the last 4, but only 1 for the first (which must be tails) because if the first was $X$ we would be in line 1: therefore $2^4$


        3. Line: There are $2^3$ possibilities for the last three, but we can vary only the first one, the second one has to be tails as otherwise we are again in one of the upper cases: $2^3cdot 2^1$


        4. Line: There are $2^2$ for the last two and $2^2$ for the first 3, as we can vary the first and the second one without falling into one of the upper cases (the fourth one being tails again)


        5. Line: $2^1$ for the last one and $2^3$ for the first, the second and the third


        6. Line: We can vary the first, second, third and fourth arbitrarily (as long as fifth is tails) without falling into the upper cases.


        therefore we obtain $$frac2^5+5cdot2^42^10= frac72^6$$







        share|cite|improve this answer












        share|cite|improve this answer



        share|cite|improve this answer










        answered 24 mins ago









        0rangetree

        551212




        551212






















            up vote
            1
            down vote













            Corrected answer after Orangetree pointed out I forgot to take into account events were not mutually exclusive.



            You need to think about how many different coin tossing sequences give at least $5$ consecutive heads, and how many coin tossing sequences there are in total, and then take the ratio of the two.



            Clearly there is $2^10$ coin tossing sequences in total, since each of $10$ coins have $2$ possible outcomes.



            To see how many sequences have $5$ consecutive heads consider the following. In any sequence



            $$X-X-X-X-X-X-X-X-X-X$$



            We can put the $5$ consecutive heads in $5$ places. This can be seen by putting it at the start of thee sequence, and then moving it over step by step.



            $$H-H-H-H-H-X-X-X-X-X$$
            $$X-H-H-H-H-H-X-X-X-X$$
            $$X-X-H-H-H-H-H-X-X-X$$
            $$X-X-X-H-H-H-H-H-X-X$$
            $$X-X-X-X-H-H-H-H-H-X$$
            $$X-X-X-X-X-H-H-H-H-H$$



            For the first scenario, we have $2^5$ possible sequences since the remaining coins can be either heads or tails without affecting the result.



            For the second scenario, we can only take $2^4$ since we need to fix the first coin as tails to avoid counting sequences more than once.



            Similarly, for the third scenario we can count $2^4$ un-counted sequences, as we fix the coin preceeding the sequence as tails.. and so on



            This gives total number of ways



            $$2^5 + 2^4 + 2^4 + 2^4 + 2^4 + 2^4 = 2^4(2+1+1+1+1+1) = 2^4times 7$$



            Hence the probability should be



            $$frac2^4 times 72^10 = frac72^6$$



            To actually answer your question if a general formula exists, the reasoning above can be extended to give the probability of at least $m$ heads out of $n$ coin tosses as



            $$frac2^m-1(2+(n-m))2^n = frac2+n-m2^n-m+1$$






            share|cite|improve this answer










            New contributor




            Xiaomi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.

















            • Not "five times in succession". At least five times in succession.
              – Alvaro Fuentes
              1 hour ago






            • 2




              Why would that affect the result? The remaining 5 coins can also be heads. The above gives the probability of at least 5 heads, not 5 heads exactly.
              – Xiaomi
              1 hour ago











            • the events are not mutually exclusive so you cannot simply add their probabilities
              – 0rangetree
              58 mins ago










            • Oh I see your logic. But you're counting some results more than once, as @0rangetree points out.
              – Alvaro Fuentes
              56 mins ago










            • Oh I see now. Thanks @0rangetree
              – Xiaomi
              56 mins ago














            up vote
            1
            down vote













            Corrected answer after Orangetree pointed out I forgot to take into account events were not mutually exclusive.



            You need to think about how many different coin tossing sequences give at least $5$ consecutive heads, and how many coin tossing sequences there are in total, and then take the ratio of the two.



            Clearly there is $2^10$ coin tossing sequences in total, since each of $10$ coins have $2$ possible outcomes.



            To see how many sequences have $5$ consecutive heads consider the following. In any sequence



            $$X-X-X-X-X-X-X-X-X-X$$



            We can put the $5$ consecutive heads in $5$ places. This can be seen by putting it at the start of thee sequence, and then moving it over step by step.



            $$H-H-H-H-H-X-X-X-X-X$$
            $$X-H-H-H-H-H-X-X-X-X$$
            $$X-X-H-H-H-H-H-X-X-X$$
            $$X-X-X-H-H-H-H-H-X-X$$
            $$X-X-X-X-H-H-H-H-H-X$$
            $$X-X-X-X-X-H-H-H-H-H$$



            For the first scenario, we have $2^5$ possible sequences since the remaining coins can be either heads or tails without affecting the result.



            For the second scenario, we can only take $2^4$ since we need to fix the first coin as tails to avoid counting sequences more than once.



            Similarly, for the third scenario we can count $2^4$ un-counted sequences, as we fix the coin preceeding the sequence as tails.. and so on



            This gives total number of ways



            $$2^5 + 2^4 + 2^4 + 2^4 + 2^4 + 2^4 = 2^4(2+1+1+1+1+1) = 2^4times 7$$



            Hence the probability should be



            $$frac2^4 times 72^10 = frac72^6$$



            To actually answer your question if a general formula exists, the reasoning above can be extended to give the probability of at least $m$ heads out of $n$ coin tosses as



            $$frac2^m-1(2+(n-m))2^n = frac2+n-m2^n-m+1$$






            share|cite|improve this answer










            New contributor




            Xiaomi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.

















            • Not "five times in succession". At least five times in succession.
              – Alvaro Fuentes
              1 hour ago






            • 2




              Why would that affect the result? The remaining 5 coins can also be heads. The above gives the probability of at least 5 heads, not 5 heads exactly.
              – Xiaomi
              1 hour ago











            • the events are not mutually exclusive so you cannot simply add their probabilities
              – 0rangetree
              58 mins ago










            • Oh I see your logic. But you're counting some results more than once, as @0rangetree points out.
              – Alvaro Fuentes
              56 mins ago










            • Oh I see now. Thanks @0rangetree
              – Xiaomi
              56 mins ago












            up vote
            1
            down vote










            up vote
            1
            down vote









            Corrected answer after Orangetree pointed out I forgot to take into account events were not mutually exclusive.



            You need to think about how many different coin tossing sequences give at least $5$ consecutive heads, and how many coin tossing sequences there are in total, and then take the ratio of the two.



            Clearly there is $2^10$ coin tossing sequences in total, since each of $10$ coins have $2$ possible outcomes.



            To see how many sequences have $5$ consecutive heads consider the following. In any sequence



            $$X-X-X-X-X-X-X-X-X-X$$



            We can put the $5$ consecutive heads in $5$ places. This can be seen by putting it at the start of thee sequence, and then moving it over step by step.



            $$H-H-H-H-H-X-X-X-X-X$$
            $$X-H-H-H-H-H-X-X-X-X$$
            $$X-X-H-H-H-H-H-X-X-X$$
            $$X-X-X-H-H-H-H-H-X-X$$
            $$X-X-X-X-H-H-H-H-H-X$$
            $$X-X-X-X-X-H-H-H-H-H$$



            For the first scenario, we have $2^5$ possible sequences since the remaining coins can be either heads or tails without affecting the result.



            For the second scenario, we can only take $2^4$ since we need to fix the first coin as tails to avoid counting sequences more than once.



            Similarly, for the third scenario we can count $2^4$ un-counted sequences, as we fix the coin preceeding the sequence as tails.. and so on



            This gives total number of ways



            $$2^5 + 2^4 + 2^4 + 2^4 + 2^4 + 2^4 = 2^4(2+1+1+1+1+1) = 2^4times 7$$



            Hence the probability should be



            $$frac2^4 times 72^10 = frac72^6$$



            To actually answer your question if a general formula exists, the reasoning above can be extended to give the probability of at least $m$ heads out of $n$ coin tosses as



            $$frac2^m-1(2+(n-m))2^n = frac2+n-m2^n-m+1$$






            share|cite|improve this answer










            New contributor




            Xiaomi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            Corrected answer after Orangetree pointed out I forgot to take into account events were not mutually exclusive.



            You need to think about how many different coin tossing sequences give at least $5$ consecutive heads, and how many coin tossing sequences there are in total, and then take the ratio of the two.



            Clearly there is $2^10$ coin tossing sequences in total, since each of $10$ coins have $2$ possible outcomes.



            To see how many sequences have $5$ consecutive heads consider the following. In any sequence



            $$X-X-X-X-X-X-X-X-X-X$$



            We can put the $5$ consecutive heads in $5$ places. This can be seen by putting it at the start of thee sequence, and then moving it over step by step.



            $$H-H-H-H-H-X-X-X-X-X$$
            $$X-H-H-H-H-H-X-X-X-X$$
            $$X-X-H-H-H-H-H-X-X-X$$
            $$X-X-X-H-H-H-H-H-X-X$$
            $$X-X-X-X-H-H-H-H-H-X$$
            $$X-X-X-X-X-H-H-H-H-H$$



            For the first scenario, we have $2^5$ possible sequences since the remaining coins can be either heads or tails without affecting the result.



            For the second scenario, we can only take $2^4$ since we need to fix the first coin as tails to avoid counting sequences more than once.



            Similarly, for the third scenario we can count $2^4$ un-counted sequences, as we fix the coin preceeding the sequence as tails.. and so on



            This gives total number of ways



            $$2^5 + 2^4 + 2^4 + 2^4 + 2^4 + 2^4 = 2^4(2+1+1+1+1+1) = 2^4times 7$$



            Hence the probability should be



            $$frac2^4 times 72^10 = frac72^6$$



            To actually answer your question if a general formula exists, the reasoning above can be extended to give the probability of at least $m$ heads out of $n$ coin tosses as



            $$frac2^m-1(2+(n-m))2^n = frac2+n-m2^n-m+1$$







            share|cite|improve this answer










            New contributor




            Xiaomi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            share|cite|improve this answer



            share|cite|improve this answer








            edited 22 mins ago





















            New contributor




            Xiaomi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.









            answered 1 hour ago









            Xiaomi

            1135




            1135




            New contributor




            Xiaomi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.





            New contributor





            Xiaomi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.






            Xiaomi is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.











            • Not "five times in succession". At least five times in succession.
              – Alvaro Fuentes
              1 hour ago






            • 2




              Why would that affect the result? The remaining 5 coins can also be heads. The above gives the probability of at least 5 heads, not 5 heads exactly.
              – Xiaomi
              1 hour ago











            • the events are not mutually exclusive so you cannot simply add their probabilities
              – 0rangetree
              58 mins ago










            • Oh I see your logic. But you're counting some results more than once, as @0rangetree points out.
              – Alvaro Fuentes
              56 mins ago










            • Oh I see now. Thanks @0rangetree
              – Xiaomi
              56 mins ago
















            • Not "five times in succession". At least five times in succession.
              – Alvaro Fuentes
              1 hour ago






            • 2




              Why would that affect the result? The remaining 5 coins can also be heads. The above gives the probability of at least 5 heads, not 5 heads exactly.
              – Xiaomi
              1 hour ago











            • the events are not mutually exclusive so you cannot simply add their probabilities
              – 0rangetree
              58 mins ago










            • Oh I see your logic. But you're counting some results more than once, as @0rangetree points out.
              – Alvaro Fuentes
              56 mins ago










            • Oh I see now. Thanks @0rangetree
              – Xiaomi
              56 mins ago















            Not "five times in succession". At least five times in succession.
            – Alvaro Fuentes
            1 hour ago




            Not "five times in succession". At least five times in succession.
            – Alvaro Fuentes
            1 hour ago




            2




            2




            Why would that affect the result? The remaining 5 coins can also be heads. The above gives the probability of at least 5 heads, not 5 heads exactly.
            – Xiaomi
            1 hour ago





            Why would that affect the result? The remaining 5 coins can also be heads. The above gives the probability of at least 5 heads, not 5 heads exactly.
            – Xiaomi
            1 hour ago













            the events are not mutually exclusive so you cannot simply add their probabilities
            – 0rangetree
            58 mins ago




            the events are not mutually exclusive so you cannot simply add their probabilities
            – 0rangetree
            58 mins ago












            Oh I see your logic. But you're counting some results more than once, as @0rangetree points out.
            – Alvaro Fuentes
            56 mins ago




            Oh I see your logic. But you're counting some results more than once, as @0rangetree points out.
            – Alvaro Fuentes
            56 mins ago












            Oh I see now. Thanks @0rangetree
            – Xiaomi
            56 mins ago




            Oh I see now. Thanks @0rangetree
            – Xiaomi
            56 mins ago

















             

            draft saved


            draft discarded















































             


            draft saved


            draft discarded














            StackExchange.ready(
            function ()
            StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstats.stackexchange.com%2fquestions%2f369157%2fcoin-tossings-probability%23new-answer', 'question_page');

            );

            Post as a guest













































































            Comments

            Popular posts from this blog

            Long meetings (6-7 hours a day): Being “babysat” by supervisor

            Is the Concept of Multiple Fantasy Races Scientifically Flawed? [closed]

            Confectionery