.
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:
(a) at least 5 girls?
(b) at most 4 girls?
~~~~~~~~~~~~~~~~~~~~~~~~
This problem is on the Binomial distribution.
The number of trials is 7. The probability of success for each individual trial is 0.5.
(a) In part (a), they want you determine the probability
P(at least 5 girls) = P(5) + P(6) + P(7).
+-----------------------------------------------------------------------+
| You can calculate each of the three terms/addends above separately |
| and then add them. |
| But the shortest way is to calculate P as |
| P = 1 - (P(0) + P(1)+ P(2) + P(3) + P(4)). |
| The sum in parentheses is a cumulative sum, and there are special |
| tools to calculate cumulative sums. |
+-----------------------------------------------------------------------+
To find the cumulative sum in parentheses, use the standard function binomcdf
of a regular calculator TI-83/84
k n p <<<---=== formatting pattern
P' = binomcdf(4, 7, 0.5)
You get P' = 0.7734 (rounded).
Then P = 1 - P' = 1 - 0.7734 = 0.2266. It is the ANSWER to (a).
Notice that P' is the complementary probability to P.
Alternatively, to calculate cumulative sum, you may use the Excel standard function BINOM.DIST.
Another alternative is to use free of charge online calculator
https://stattrek.com/online-calculator/binomial.aspx
This calculator is the best, since it gives an output in all formats simultaneously.
You only should choose the format which you need.
(b) In part (b), they want you determine the probability
P(at most 4 girls) = P(0) + P(1) + P(2) + P(3) + P(4).
+-----------------------------------------------------------------------+
| The sum in parentheses is a cumulative sum, and there are special |
| tools to calculate cumulative sums. |
+-----------------------------------------------------------------------+
To find the cumulative sum in parentheses, use the standard function binomcdf
of a regular calculator TI-83/84
k n p <<<---=== formatting pattern
P = binomcdf(4, 7, 0.5)
You get P = 0.7734 (rounded). It is the ANSWER to (b).
Alternatively, to calculate cumulative sum, you may use the Excel standard function BINOM.DIST.
Another alternative is to use free of charge online calculator
https://stattrek.com/online-calculator/binomial.aspx
Again, this calculator is the best, since it gives an output in all formats simultaneously.
You only should choose the format which you need.
Solved.