Question 322068
Suppose that 30% of the vehicles in a mall parking lot belong to emplyees. 
Nine vehicles are chosen at random. 
find the probability that:
exactly 3 belong to mall employees = 9C3*0.3^3*0.7^6 = 0.2668
-----------------------------
at most 3 belong to mall employees = binomcdf(9,0.3,3) = 0.7297 
-----
at least 7 belong to mall emplyees = 1 - binomcdf(9,0.3,6) = 0.0043
=======================
Cheers,
Stan H.