400
You observe the gender of the next 100 babies born at a local hospital. You count the number of girls born.
a) Identify the values of n, p, and q, and list the possible values of the random variable x.
b) What is the probability of getting exactly 42 girls?
c) What is the probability of getting more than or equal to 60 girls?
(round to 3 decimals places.)
a) n=100, p=1/2, q=1/2, x={0,1,2,3,.....100}
b) binompdf(100,0.5,42) = 0.022
c) Less than 60 = binomcdf(100,0.5,59)
So 60 or more girls = 1 - binomcdf(100,0.5,59) = 0.028