Assume that 61% of people are left-handed. If we select 5 people at random, find the probability of each outcome described below, rounded to four decimal places:
a. There are some lefties (≥ 1) among the 5 people.
b. There are exactly 3 lefties in the group.
c. There are at least 4 lefties in the group.
d. There are no more than 2 lefties in the group.
e. How many lefties do you expect?
f. With what standard deviation?
X ~ Bin(n,p)
Where n = 5 , p = 0.61
Binomial probability distribution,
P(X) = nCx * px * ( 1 - p)n-x
a)
P(X >= 1) = 1 - P(X = 0)
= 1 - 5C0 * 0.610 * ( 1 - 0.61)5
= 0.9910
b)
P(X = 3) = 5C3 * 0.613 * ( 1 - 0.61)2
= 0.3452
c)
P(X >= 4) = P(X = 4) + P(X = 5)
= 5C4 * 0.614 * ( 1 - 0.61)1 + 5C5 * 0.615 * ( 1 - 0.61)0
= 0.3545
d)
P(X <= 2) = P(X = 0) + P(X = 1) + P(X = 2)
= 5C0 * 0.610 * ( 1 - 0.61)5 + 5C1 * 0.611 * ( 1 - 0.61)4 + 5C2 * 0.612 * ( 1 - 0.61)3
= 0.3003
e)
E(X) = n p = 5 * 0.61 = 3.05
f)
Standard deviation = sqrt [ n p ( 1 - p) ]
= sqrt [ 5 * 0.61 ( 1 - 0.61) ]
= 1.0906
Get Answers For Free
Most questions answered within 1 hours.