Results 1 to 6 of 6

Thread: (Resolved) Computing Odds

  1. #1

    Thread Starter
    Member
    Join Date
    Sep 2002
    Posts
    40

    Resolved (Resolved) Computing Odds

    I seem to have forgotten everything how to compute complex odds, sad b/c I took college math classes just two years ago.

    Anywho, here's what I want to fiqure out how to do...

    If the odds of Event A are x1 in y1, and the events of Event B are x2 in y2, how can I fiqure out what the odds are that Event A will occur before Event B?

    Event A = x1 in y1
    Event B = x2 in y2

    Event A is less likely to occur than Event B.

    How do you fiqure out what the odds are that Event A will occur before Event B?
    Last edited by applescript; Oct 15th, 2004 at 10:43 AM.

  2. #2
    vbuggy krtxmrtz's Avatar
    Join Date
    May 2002
    Location
    In a probability cloud
    Posts
    5,573
    What are y1 and y2?
    Lottery is a tax on people who are bad at maths
    If only mosquitoes sucked fat instead of blood...
    To do is to be (Descartes). To be is to do (Sartre). To be do be do (Sinatra)

  3. #3

    Thread Starter
    Member
    Join Date
    Sep 2002
    Posts
    40
    For the purposes of discussion, let's say that:

    Event A = 6 in 36 (1 in 6)
    Event B = 3 in 36 (1 in 12)

  4. #4
    Don't Panic! Ecniv's Avatar
    Join Date
    Nov 2000
    Location
    Amsterdam...
    Posts
    5,343
    um this is a guess...

    a:1 in 6
    b:1 in 12

    b has 5/12 chances - cause on the sixth go the 'a' will get it.


    But, I was thinking of factorials for some reason.
    Code:
    1/6   1/5   1/4   1/3 1/2
    1/12 1/11 1/10 1/9 1/8
    Dunno... I took Stats ten years ago and failed (E at A level standard - pure n stats)


    Vince

    BOFH Now, BOFH Past, Information on duplicates

    Feeling like a fly on the inside of a closed window (Thunk!)
    If I post a lot, it is because I am bored at work! ;D Or stuck...
    * Anything I post can be only my opinion. Advice etc is up to you to persue...

  5. #5
    type Woss is new Grumpy; wossname's Avatar
    Join Date
    Aug 2002
    Location
    #!/bin/bash
    Posts
    5,682
    I bet Carol Vordermann would know. :drool:

  6. #6
    I don't do your homework! opus's Avatar
    Join Date
    Jun 2000
    Location
    Good Old Europe
    Posts
    3,863
    My Stat class wa also long time ago, but i'll give it a try:

    Event A has probability p(A) (from example 1/6)
    Event B has probability p(B) (from example 1/12)
    Event C is not having A or B, it has probability p(C)

    p(a)+p(B)+p(c)=1

    The prob that A happens before B in the first two draws is p(A).

    The prob that A happens before B in the first 3 draws is:
    first draw (A or C are possible) p(A)+p(C)
    second draw (A or C are possible if A happened in first draw, A must be drawn if C happened in first draw) p(A)+p(C) ; p(A)
    Total prob p(A)*(p(A)+p(C))+p(C)*p(A).

    For the prob in case of four draws you can continue yourself.
    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!

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