Results 1 to 18 of 18

Thread: a Probability Teaser

  1. #1

    Thread Starter
    New Member
    Join Date
    May 2005
    Posts
    2

    a Probability Teaser

    Ok, my friends and I have puzzled over this for a bit and failed to come to a satisfactory answer.

    There's a one hundred sided die. The chances of it landing on any number from 1 to 100 is 100 to 1.

    The chances of getting a 97 are 1/100.

    So if the die is rolled 100 times, what are the chances that a 97 will have come up? It cant be 100 x 1/100 because that would be 1 and therefore a certainty, which it cant be.

    Any ideas?

  2. #2
    Frenzied Member sciguyryan's Avatar
    Join Date
    Sep 2003
    Location
    Wales
    Posts
    1,763

    Re: a Probability Teaser

    Quote Originally Posted by david185000
    Ok, my friends and I have puzzled over this for a bit and failed to come to a satisfactory answer.

    There's a one hundred sided die. The chances of it landing on any number from 1 to 100 is 100 to 1.

    The chances of getting a 97 are 1/100.

    So if the die is rolled 100 times, what are the chances that a 97 will have come up? It cant be 100 x 1/100 because that would be 1 and therefore a certainty, which it cant be.

    Any ideas?

    Probability = No. Of Wanted Events / No. Of Total Events

    Probability = (100 * 1) / (100 * 100)

    Probability = 100 / 10,000

    Proability = 0.01 = 1%

    Or, atleast I think it is...

    Cheers,

    RyanJ
    My Blog.

    Ryan Jones.

  3. #3

    Thread Starter
    New Member
    Join Date
    May 2005
    Posts
    2

    Re: a Probability Teaser

    Nah man, that wouldnt make sense. If you throw the die 1 hundred times, there isnt a 1% chance of getting a 97.

    Those odds are just too small for something like this.

  4. #4
    Hyperactive Member The_Duck's Avatar
    Join Date
    May 2005
    Location
    Leamington, UK
    Posts
    351

    Re: a Probability Teaser

    Statistically I think it is 1.

    If you roll a dice six times you have a 1/6 chance of getting any number. Thus the chance of getting say 5 is 1 (if you roll six times)

    It is the same for a 100 sided dice! If you roll it 100 times statistically you will get the number you want !

  5. #5
    I don't do your homework! opus's Avatar
    Join Date
    Jun 2000
    Location
    Good Old Europe
    Posts
    3,863

    Re: a Probability Teaser

    Look at it from the other way, how much is the probability the miss the result in each throw. For the first it is 0.99, to miss it in the fist two throws 0.99*0.99 and so forth. for all the throws it 0.99^100 which is 0.36603234....
    Subtrct that from 1 and you have the probabiltiy to have at least one 97 in your hundred throws.

    The mistake sciguyryan made was the number of all possible results is 100^100 and the number of wanted results is more than 100. For example in two throws you can have a 97 in the first or the second and in both throws. Add them all up for the hundred throws and you will get the result from above.
    You're welcome to rate this post!
    If your problem is solved, please use the Mark thread as resolved button


    Wait, I'm too old to hurry!

  6. #6
    I don't do your homework! opus's Avatar
    Join Date
    Jun 2000
    Location
    Good Old Europe
    Posts
    3,863

    Re: a Probability Teaser

    Hey The Duck, that'S only correct if you look at each throw seperatly. He searched for the total prob over all throws.
    You're welcome to rate this post!
    If your problem is solved, please use the Mark thread as resolved button


    Wait, I'm too old to hurry!

  7. #7
    Hyperactive Member The_Duck's Avatar
    Join Date
    May 2005
    Location
    Leamington, UK
    Posts
    351

    Re: a Probability Teaser

    I see!

  8. #8
    Frenzied Member sciguyryan's Avatar
    Join Date
    Sep 2003
    Location
    Wales
    Posts
    1,763

    Re: a Probability Teaser

    Quote Originally Posted by opus
    Look at it from the other way, how much is the probability the miss the result in each throw. For the first it is 0.99, to miss it in the fist two throws 0.99*0.99 and so forth. for all the throws it 0.99^100 which is 0.36603234....
    Subtrct that from 1 and you have the probabiltiy to have at least one 97 in your hundred throws.

    The mistake sciguyryan made was the number of all possible results is 100^100 and the number of wanted results is more than 100. For example in two throws you can have a 97 in the first or the second and in both throws. Add them all up for the hundred throws and you will get the result from above.

    Right, I see the mistake now

    Cheers,

    RyanJ
    My Blog.

    Ryan Jones.

  9. #9
    Addicted Member Rassis's Avatar
    Join Date
    Jun 2004
    Location
    Lisbon
    Posts
    248

    Re: a Probability Teaser

    It will be easier to find an answer for such a problem and understand the result if you run a simple simulator like the one I attach built in EXCEL.

    Cheers
    Attached Files Attached Files
    ...este projecto dos Deuses que os homens teimam em arruinar...

  10. #10
    Addicted Member Rassis's Avatar
    Join Date
    Jun 2004
    Location
    Lisbon
    Posts
    248

    Re: a Probability Teaser

    It will be easier to find an answer for such a problem and understand the result if you run a simple simulating model like the one I attach herewith built in EXCEL.

    Cheers
    ...este projecto dos Deuses que os homens teimam em arruinar...

  11. #11
    Fanatic Member sql_lall's Avatar
    Join Date
    Jul 2002
    Location
    Up Above (i.e. AUS)
    Posts
    571

    Re: a Probability Teaser

    The results form a binomial distribution X ~ B(100, 0.01) where X is the number of times a certain value (say, 97) appears.
    From this, it's easy to see that the probability the value appears at least once is the same as P(X >= 1) = 1 - P(X == 0) = 1 - 100C0 * (0.01)0 * (0.99)100, which is just 1 - 0.99100, as opus showed with logic.
    sql_lall

  12. #12
    Addicted Member Rassis's Avatar
    Join Date
    Jun 2004
    Location
    Lisbon
    Posts
    248

    Re: a Probability Teaser

    Correct. Simulation is just another (and easier...?) way to find an answer using nothing but logic and leaving analysis apart - specially usefull when you don´t remember the appropriate formulas and a good book on the matter is not at hand.

    Cheers
    ...este projecto dos Deuses que os homens teimam em arruinar...

  13. #13
    Hyperactive Member capsulecorpjx's Avatar
    Join Date
    May 2005
    Location
    Renton, WA
    Posts
    288

    Re: a Probability Teaser

    I have the answer.
    The prob that 97 will show up in 100 rows is 1 - [the probability that 97 will NOT show up in 100 rows).

    This equation is:
    1 - [(99/100) ^ 100] = 0.634
    Or 63.4% chance 97 will show up if you row your die 100 times.

    There you go.

    Quote Originally Posted by david185000
    Ok, my friends and I have puzzled over this for a bit and failed to come to a satisfactory answer.

    There's a one hundred sided die. The chances of it landing on any number from 1 to 100 is 100 to 1.

    The chances of getting a 97 are 1/100.

    So if the die is rolled 100 times, what are the chances that a 97 will have come up? It cant be 100 x 1/100 because that would be 1 and therefore a certainty, which it cant be.

    Any ideas?

  14. #14
    I don't do your homework! opus's Avatar
    Join Date
    Jun 2000
    Location
    Good Old Europe
    Posts
    3,863

    Re: a Probability Teaser

    Welcome to the forum.
    If you would have rad all the reply's, you wouldhave seen this solution already.
    You're welcome to rate this post!
    If your problem is solved, please use the Mark thread as resolved button


    Wait, I'm too old to hurry!

  15. #15
    Hyperactive Member boku's Avatar
    Join Date
    Dec 2004
    Posts
    386

    Re: a Probability Teaser

    This would actually be impossible to do with real die because there is no way that any "hedron" shape could effectivly portray 100 equalateral sides.
    -BoKu-

  16. #16
    Addicted Member Rassis's Avatar
    Join Date
    Jun 2004
    Location
    Lisbon
    Posts
    248

    Re: a Probability Teaser

    Boku,

    That is why you use simulation on computer instead...
    See my previous post in this thread with an attached Excel file.
    ...este projecto dos Deuses que os homens teimam em arruinar...

  17. #17
    Fanatic Member twanvl's Avatar
    Join Date
    Dec 2001
    Posts
    771

    Re: a Probability Teaser

    Quote Originally Posted by boku
    This would actually be impossible to do with real die because there is no way that any "hedron" shape could effectivly portray 100 equalateral sides.
    Actually, it is possible, consider a 50 sided regular polygon, place a 'pyramid' on each side of it. Now you have a 100 sided die.
    Another way is to use 2 20 sided dice, a and b and define the die c as c=(a*20+b)/4. But this is stretching the word die...

  18. #18
    Hyperactive Member boku's Avatar
    Join Date
    Dec 2004
    Posts
    386

    Re: a Probability Teaser

    but that is not a "hedron" shape. take a look here http://membres.lycos.fr/arjan/num100.htm
    -BoKu-

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  



Click Here to Expand Forum to Full Width