document.write( "Question 1206772: The Wilson family was one of the first to come to the U.S. They had 7 children. Assuming that the probability of a child being a girl is .5, find the probability that the Wilson family had:
\n" );
document.write( "at least 5 girls?
\n" );
document.write( "at most 4 girls? \n" );
document.write( "
Algebra.Com's Answer #844429 by greenestamps(13200)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "If you have a problem like this in a situation where you don't have access to a calculator (or where use of a calculator is not allowed), then you can solve the problem using Pascal's Triangle. It can be used in any problem where there are exactly two outcomes with equal probabilities -- like genders of children, or flips of a fair coin. \n" ); document.write( "Note at the beginning that \"at least 5 girls\" and \"at most 4 girls\" cover all the possibilities with no overlap. That means the sum of the answers to the two questions must be 1. Alternatively, it means that after you answer one of the questions you can simply subtract that answer from 1 to get the answer to the other. \n" ); document.write( "For this problem, involving the genders of 7 children, we are interested in row 7 of Pascal's Triangle, which is \n" ); document.write( "1 7 21 35 35 21 7 1 \n" ); document.write( "Those numbers are the numbers of ways there can be, respectively, 7, 6, 5, 4, 3, 2, 1, or 0 girls. \n" ); document.write( "Then, since the total number of ways of getting 7 children is 2^7=128, the probabilities are \n" ); document.write( "1/128, 7/128, 21/128, 35/128, 35/128, 21/128, 7/128, and 1/128 \n" ); document.write( "of getting the respective numbers of girls. \n" ); document.write( "So for this problem, the probability of getting at least 5 girls (i.e., 7 or 6 or 5) is 1/128 + 7/128 + 21/128 = 29/128; and then the probability of getting at most 4 girls is 1-29/128 = 99/128 (or 35/128 + 35/128 + 21/128 + 7/128 + 1/128 = 99/128). \n" ); document.write( "A student who works this kind of problem frequently might have the first several rows of Pascal's Triangle memorized. But the student can generate any row using an easy algorithm. \n" ); document.write( "The numbers in row 7, used for this problem, can be generated like this: \n" ); document.write( "1 \n" ); document.write( "1*(7/1) = 7 \n" ); document.write( "7*(6/2) = 7*3 = 21 \n" ); document.write( "21*(5/3) = 7*5 = 35 \n" ); document.write( "35*(4/4) = 35 \n" ); document.write( "and after that you know the numbers form a symmetrical pattern; row 7 is \n" ); document.write( "1 7 21 35 35 21 7 1 \n" ); document.write( "Here is how to generate the numbers in row 10 using the algorithm: \n" ); document.write( "1 \n" ); document.write( "1*(10/1) = 10 \n" ); document.write( "10*(9/2) = 9*5 = 45 \n" ); document.write( "45*(8/3) = 8*15 = 120 \n" ); document.write( "120*(7/4) = 7*30 = 210 \n" ); document.write( "210*(6/5) = 6*42 = 252 \n" ); document.write( "252*(5/6) = 210 \n" ); document.write( "and again use the symmetrical pattern to find that row 10 of Pascal's Triangle is \n" ); document.write( "1 10 45 120 210 252 210 120 45 10 1 \n" ); document.write( " \n" ); document.write( " |