document.write( "Question 927482: Suppose that the average number of airline crashes in a country is 1.9 per half year.
\n" );
document.write( "(a) What is the probability that there will be at least 3 accidents in the next half year?
\n" );
document.write( "(b) What is the probability that there will be at least 6 accidents in the next year?
\n" );
document.write( "(c) What is the probability that there will be at most 5 accidents in the next 1.5 years? \n" );
document.write( "
Algebra.Com's Answer #562992 by ewatrrr(24785) You can put this solution on YOUR website! average number of airline crashes in a country is 1.9 per half year \n" ); document.write( "POISSON distribution \n" ); document.write( "P( x ≥ 3 in next .5yr) = 1 - poissoncdf(1.9, 2) = 1 -.7037 = .2963 \n" ); document.write( ".... \n" ); document.write( " \n" ); document.write( "P( x ≥ 6 next year) = 1 - poissoncdf(3.8,5) = 1 - .8156 = .1944 \n" ); document.write( "....... \n" ); document.write( " \n" ); document.write( "P( x ≤ 5 in next 1.5yr) = poissoncdf(5.7, 5)= .495 \n" ); document.write( " |