document.write( "Question 909207: The number of tornados striking Sunnyvale Trailer Park during a single year can be described using a Poisson random distribution with a mean of 1.2.
\n" );
document.write( "a) What is the probability of zero tornados striking the park in a given year?
\n" );
document.write( "b) What is the probability that more than two tornados will strike the park in a given year?
\n" );
document.write( "c) What is the most likely number of tornados in a given year? \n" );
document.write( "
Algebra.Com's Answer #551684 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! Poison Distribution: avg = 1.2/yr \n" ); document.write( "a) P = poissonpdf(1.2,0) \n" ); document.write( "b) P( > 2) = 1 - poissoncdf(1.2,2) \n" ); document.write( "c) 1.2/yr \n" ); document.write( " |