document.write( "Question 1074240: Every day, a lecture may be canceled due to inclement weather with probability 0.05. Class cancelations on different days are independent.
\n" );
document.write( "(a) There are 15 classes left this semester. Compute the probability that at least 4 of them get canceled.
\n" );
document.write( "(b) Compute the probability that the tenth class this semester is the third class that gets canceled.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #688939 by stanbon(75887) ![]() You can put this solution on YOUR website! Every day, a lecture may be canceled due to inclement weather with probability 0.05. Class cancellations on different days are independent. \n" ); document.write( "Binomial Problem with p = 0.05 and n = 15 \n" ); document.write( "--------- \n" ); document.write( "(a) There are 15 classes left this semester. Compute the probability that at least 4 of them get canceled. \n" ); document.write( "P(4<= x <=15) = 1 - P(0<=x<=3) = 1 - binomcdf(15,0.05,3) = 0.0055 \n" ); document.write( "------ \n" ); document.write( "(b) Compute the probability that the tenth class this semester is the third class that gets canceled. \n" ); document.write( "P(2 cancelled in 1st 9) = binompdf(9,0.05,2) = 0.0629 \n" ); document.write( "Then P(10th class cancelled) = 0.05 \n" ); document.write( "---- \n" ); document.write( "Ans:: P(condition) = 0.0629*0.05 = 0.0031 \n" ); document.write( "---------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "----------- \n" ); document.write( " |