
Johannah I. answered 12/18/19
Experienced Math Tutor
Part A is a binomial probability problem in which the number of trials is equal to 14. The probability for a "success" which we are classifying as containing almonds is 40% or 0.40.
The probability that half of the 14 bars contain almonds means that x=7. The probability can be determined using the formula:
nCx(p)^x(1-p)^(n-x)
n=number of trials
x=number of successes
p=probability of a success
C is the combination function
It can also be determined using the binompdf function on a TI-84 (or similar) calculator.
binompdf(14,0.40,7)
Part B is also a binomial probability problem. Because we are in search of a probability that at least half contain almonds, the work will vary. What we want to know is: P(X=7)+P(X=8)+P(X=9)+P(X=10)+P(X=11)+P(X=12)+P(X=13)+P(X=14). As you may have suspected, this would be a lot of work to do out whether we used the binomial formula or the binompdf function on the calculator. However, the calculator provides another function that can help us called binomcdf. Binomcdf stands for binomial cumulative distribution function. In using this function, we can determine P(X is less than or equal to 6). In subtracting this result from 1, we would be left with P(X is greater than or equal to 7):
1-binomcdf(14,0.40,6)