Results 1 to 10 of 10

Thread: Simple Probability Question [*RESOLVED*]

  1. #1

    Thread Starter
    Junior Member
    Join Date
    Nov 2003
    Posts
    17

    Simple Probability Question [*RESOLVED*]

    Hi !

    I am not good at maths like you experts, that why I am taking Maths classes.
    Recently I came across the following two Probability questions and i am not able to figure out how to solve them.

    ------------------------------------------------------------------
    Q1.) If four coins are tossed, find the probability of
    the occurrence of 2 heads and 2 tails ?

    Q2.) The odds that a book will be favourably reviewed by
    three independent critics are 3 to 2, 4 to 3 and 2 to
    3 respectively. What is the probability that of the
    three reviews majority will be favourable?
    -----------------------------------------------------------------


    Any Help will be appreciated.

    Thanks
    Nandu
    Last edited by getnandu; Dec 3rd, 2003 at 11:14 PM.

  2. #2
    So Unbanned DiGiTaIErRoR's Avatar
    Join Date
    Apr 1999
    Location
    /dev/null
    Posts
    4,111

    Re: Simple Probability Question

    Originally posted by getnandu

    Q1.) If four coins are tossed, find the probability of
    the occurrence of 2 heads and 2 tails ?
    My program says ~.375.

    VB Code:
    1. Dim x As Long, y As Long
    2. Dim flip As Long
    3. Dim h As Long, t As Long, tc As Long
    4. Randomize
    5.  
    6. For y = 1 To 1000000
    7.     For x = 0 To 3
    8.         flip = Int(2 * Rnd)
    9.         If flip = 1 Then h = h + 1 Else t = t + 1
    10.     Next
    11.     If h = 2 And t = 2 Then tc = tc + 1
    12.     h = 0
    13.     t = 0
    14. Next
    15. MsgBox tc / 1000000

    But my math says 15/16. 1 - (1/2)^4

    Last edited by DiGiTaIErRoR; Dec 3rd, 2003 at 04:19 PM.

  3. #3
    I'm about to be a PowerPoster! mendhak's Avatar
    Join Date
    Feb 2002
    Location
    Ulaan Baator GooGoo: Frog
    Posts
    38,170

    Re: Simple Probability Question

    Originally posted by getnandu


    Q2.) The odds that a book will be favourably reviewed by
    three independent critics are 3 to 2, 4 to 3 and 2 to
    3 respectively. What is the probability that of the
    three reviews majority will be favourable?
    -----------------------------------------------------------------
    3/5 * 4/7 * 2/5

    = 24/175

    = 0.137

  4. #4
    Addicted Member
    Join Date
    Apr 2003
    Posts
    170
    make a tree !!!

    add starred values (**)
    (each has value 0.5^4 )

    ** head
    **** head
    ****** head
    ******** head
    ******** tail
    ****** tail
    ******** head
    ******** tail (**)
    **** tail
    ****** head
    ******** head
    ******** tail (**)
    ****** tail
    ******** head (**)
    ******** tail
    ** tail
    **** head
    ****** head
    ******** head
    ******** tail (**)
    ****** tail
    ******** head (**)
    ******** tail
    **** tail
    ****** head
    ******** head (**)
    ******** tail
    ****** tail
    ******** head
    ******** tail
    so the probability is ( 0.5 ^ 4 * 6 )
    =37.5%

  5. #5
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    Q1:

    2^4 equally possible outcomes, out of which combinations of two in four is 4c2
    4c2/2^4=3/8

    Q2:

    2 or 3 makes a majority out of 3 and one does for a minority, so if we assume that the minority is favourable and subtract its probability from 1 we have the probability for the majority. Each of the critics could be the favouring critic while the others are not, thus:
    1 - (3/5*3/7*3/5 + 2/5*4/7*3/5 + 2/5*3/7*2/5)=0.64
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  6. #6
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    erm.. forgot that if none is in favour then it is also a minority

    1 - (3/5*3/7*3/5 + 2/5*4/7*3/5 + 2/5*3/7*2/5+2/5*3/7*3/5)=0.537143
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

  7. #7
    Only Slightly Obsessive jemidiah's Avatar
    Join Date
    Apr 2002
    Posts
    2,431
    Explain what? It comes out approximately correct (the 0.537143 is for the second question)
    The time you enjoy wasting is not wasted time.
    Bertrand Russell

    <- Remember to rate posts you find helpful.

  8. #8

    Thread Starter
    Junior Member
    Join Date
    Nov 2003
    Posts
    17
    Thanks very much guys for your help.
    You guys are right.

    Ans 1.) 3/8
    Ans 2.) 94/175

  9. #9

    Thread Starter
    Junior Member
    Join Date
    Nov 2003
    Posts
    17
    How do I change my initial thread subject to include (resolved)

    I did not find any option to do that !!!


    Nandu

  10. #10
    transcendental analytic kedaman's Avatar
    Join Date
    Mar 2000
    Location
    0x002F2EA8
    Posts
    7,221
    click on edit to the bottom right of your first post and change the subject
    Use
    writing software in C++ is like driving rivets into steel beam with a toothpick.
    writing haskell makes your life easier:
    reverse (p (6*9)) where p x|x==0=""|True=chr (48+z): p y where (y,z)=divMod x 13
    To throw away OOP for low level languages is myopia, to keep OOP is hyperopia. To throw away OOP for a high level language is insight.

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