document.write( "Question 1089547: One day, eleven babies are born at a hospital. Assuming each baby has an equal chance of being a boy or a girl, what is the probability that at most nine of the eleven babies are girls? \n" ); document.write( "
Algebra.Com's Answer #703979 by mathmate(429)![]() ![]() You can put this solution on YOUR website! Question: \n" ); document.write( "One day, eleven babies are born at a hospital. Assuming each baby has an equal chance of being a boy or a girl, what is the probability that at most nine of the eleven babies are girls? \n" ); document.write( " \n" ); document.write( "Solution: \n" ); document.write( "We will first check if this problem can be modelled using the binomial distribution. \n" ); document.write( "1. Bernoulli trials, i.e. exactly two possible outcomes (girl or boy) \n" ); document.write( "2. Number of trials (n) is known before and constant throughout the experiment, i.e. independent of outcomes. (n=11) \n" ); document.write( "3. All trials are independent of each other. (assumed from context). \n" ); document.write( "4. Probability (p) of success is known, and remain constant throughout trials. (p=0.5) \n" ); document.write( "Since all criteria are satisfied, we can model this situation with binomial distribution, where the probability of x successes out of N trials each with probability of success p is given by \n" ); document.write( "P(x)=C(N,x)(p^x)(1-p)^(N-x) \n" ); document.write( "and, \n" ); document.write( "C(N,x) is number of combinations of selecting x objects out of N. \n" ); document.write( " \n" ); document.write( "n=11 \n" ); document.write( "p=0.5 \n" ); document.write( "x<=9 \n" ); document.write( " \n" ); document.write( "P(x<=9)=1-(P(x=10)+P(x=11) \n" ); document.write( "=1-(C(11,10)0.5^10*0.5^1+C(11,11)0.5^11*0.5^0) \n" ); document.write( "=1-(0.005371+0.000488) \n" ); document.write( "=0.994141\r \n" ); document.write( "\n" ); document.write( "The probability that at most 9 out of 11 newborns are girls is 0.994141, assuming boys and girls are equally probable. \n" ); document.write( " |