|
-
Dec 3rd, 2003, 06:11 AM
#1
Thread Starter
Junior Member
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.
-
Dec 3rd, 2003, 07:43 AM
#2
So Unbanned
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:
Dim x As Long, y As Long
Dim flip As Long
Dim h As Long, t As Long, tc As Long
Randomize
For y = 1 To 1000000
For x = 0 To 3
flip = Int(2 * Rnd)
If flip = 1 Then h = h + 1 Else t = t + 1
Next
If h = 2 And t = 2 Then tc = tc + 1
h = 0
t = 0
Next
MsgBox tc / 1000000
But my math says 15/16. 1 - (1/2)^4
Last edited by DiGiTaIErRoR; Dec 3rd, 2003 at 04:19 PM.
-
Dec 3rd, 2003, 07:49 AM
#3
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
-
Dec 3rd, 2003, 12:20 PM
#4
Addicted Member
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%
-
Dec 3rd, 2003, 02:37 PM
#5
transcendental analytic
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.
-
Dec 3rd, 2003, 02:48 PM
#6
transcendental analytic
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.
-
Dec 3rd, 2003, 06:28 PM
#7
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.
-
Dec 3rd, 2003, 08:26 PM
#8
Thread Starter
Junior Member
Thanks very much guys for your help.
You guys are right.
Ans 1.) 3/8
Ans 2.) 94/175
-
Dec 3rd, 2003, 08:29 PM
#9
Thread Starter
Junior Member
How do I change my initial thread subject to include (resolved)
I did not find any option to do that !!!
Nandu
-
Dec 3rd, 2003, 10:10 PM
#10
transcendental analytic
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
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|