SOLUTION: If a seed is planted, it has a 65% chance of growing into a healthy plant. If 11 seeds are planted, what is the probability that exactly 4 don't grow?

Algebra.Com
Question 1145729: If a seed is planted, it has a 65% chance of growing into a healthy plant.
If 11 seeds are planted, what is the probability that exactly 4 don't grow?

Answer by ikleyn(52776)   (Show Source): You can put this solution on YOUR website!
.

            I think that the modern trend in solving such problems is  USING  some effective  TECHNOLOGY.

            In my post,  I will show you one robust technology.

            With it,  you will be able make calculations and solve similar problems in seconds.


This is a binomial distribution type problem where p(x) = C(n,x)* p^x * q^(n-x)


    n is equal to 11                    // number of trials
    x is equal to  4                    // number of success trials
    p is the probability of don't grow
    q = 1 - p
    C(n,x) = n! / (x! * (n-x)!)         // binomial coefficient


Notice that the "success" in this case is getting "don't grow" with the probability p = 1 - 0.65 = 0.35.


Thus in your case  p(4, 11, 0.35) = C(11,4) * 0.35^4 * 0.65^7 = use Excel function BINOM.DIST(4, 11, 0.35, FALSE) = 0.243.    ANSWER


On Excel function BINOM.DIST, see its description everywhere, for example

https://support.office.com/en-us/article/binom-dist-function-c5ae37b6-f39c-4be2-94c2-509a1480770c


RELATED QUESTIONS

If a seed is planted, it has a 65% chance of growing into a healthy plant. If 11 seeds (answered by ikleyn)
If a seed is planted, it has a 70% chance of growing into a healthy plant. If 7 seeds... (answered by ewatrrr)
If a seed is planted, it has a 85% chance of growing into a healthy plant. If 12 seeds (answered by Boreal)
If a seed is planted, it has a 85% chance of growing into a healthy plant. If 6 seeds... (answered by ikleyn)
If a seed is planted, it has a 70% chance of growing into a healthy plant. If 6 seeds... (answered by ikleyn)
A garden is planted with three type of seeds ABC, the probability that any seed will... (answered by Jc0110)
a seed company advertises that, if its seeds are properly planted, 95% of them will... (answered by htmentor)
The probability that a certain kind of flower seed will germinate is 0.90. a.) If... (answered by ewatrrr)
The probability of a seed germination is 1\3. If three of the seeds are planted what is... (answered by reviewermath)