document.write( "Question 1061876: On average a certain intersection results in 3 traffic accidents per month. What is the probability that for any given month at this intersection
\n" );
document.write( "(a) exactly 5 accidents will occur?
\n" );
document.write( "(b) less than 3 accidents will occur?
\n" );
document.write( "(c) at least 2 accidents will occur? \n" );
document.write( "
Algebra.Com's Answer #676644 by rothauserc(4718)![]() ![]() You can put this solution on YOUR website! This is a Poisson probability experiment \n" ); document.write( ": \n" ); document.write( "Probability(Pr) (x; u) = e^(-u) * u^x / x!, where x is number of events, e is constant 2.71828 and u is the mean number of events \n" ); document.write( ": \n" ); document.write( "(a) Pr ( 5; 3 ) = 2.71828^(-3) * 3^5 / 5! = 0.101 \n" ); document.write( ": \n" ); document.write( "(b) Pr ( X < 3; 3 ) = Pr (0; 3) + Pr (1; 3 ) + Pr (2; 3 ) = 0.423 \n" ); document.write( ": \n" ); document.write( "(c) Pr ( X >= 2; 3 ) = 1 - (Pr (0; 3) + Pr (1; 3)) = 0.801 \n" ); document.write( ": \n" ); document.write( " \n" ); document.write( " |