Question 294344
The probability that a pumpkin seed will germinate is 70%. A gardener plants in batches of 12.
---
These are all binomial with n = 12 and p = 0.7
---------------
1. what is the probability that exactly 10 seeds in a batch will germinate?
P(x = 10) = 12C10(0.7)^10*(0.3)^2 = 
--------------------------------------------------
2. what is the probability that 10 or more seeds in a batch will germinate?
P(10<= x <=12) = 1 - binomcdf(12,0.7,9)
--------------------------------------------------
3. what is the probability that all seeds in a batch will germinate?
P(x = 12) = 0.7^12
--------------------------------
4. find the mean U *backwards u symbol*
mean = np = 12*0.7 
---------------------------------
5. find the the varience 0 and a little 2
variance = npq = 12*0.7*0.3
======================================================
Cheers,
Stan H.
======================================================