document.write( "Question 945987: A southern pine forest is known to be infested with pine bark beetles. It is known that 30 percent of the trees are so infested. A forester walks through the forest and selects at random 40 trees and tests to see if they have the infestation. what is the probability that of the 40 trees:
\n" );
document.write( "1. four trees are infested?
\n" );
document.write( "2. four of five trees are infested?
\n" );
document.write( "3. at least three trees are infested?
\n" );
document.write( "4. what are the mean and the variance of the distribution?
\n" );
document.write( "5. can the distribution by approximated by a normal distribution? \n" );
document.write( "
Algebra.Com's Answer #577080 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! A southern pine forest is known to be infested with pine bark beetles. It is known that 30 percent of the trees are so infested. A forester walks through the forest and selects at random 40 trees and tests to see if they have the infestation. what is the probability that of the 40 trees: \n" ); document.write( "Binomial Problem with n = 40 and p(infested) = 0.3 \n" ); document.write( "-------------------------------- \n" ); document.write( " 1. four trees are infested? \n" ); document.write( "P(x = 4) = 40C4*0.3^4*0.7^37 = binompdf(40,0.3,4) = 0.00196 \n" ); document.write( "------------------------------------------------- \n" ); document.write( " 2. four of five trees are infested? \n" ); document.write( "P(x = 4) = 5C4*0.3^4*0.7 = binompdf(5,0.3,4) = 0.02835 \n" ); document.write( "------------------------------------------------------ \n" ); document.write( " 3. at least three trees are infested? (out of 5 trees) \n" ); document.write( "P(3<= x <=5) = 1 - binomcdf(5,0.3,2) = 1-0.8369 = 0.1631 \n" ); document.write( "-------------------------- \n" ); document.write( " 4. what are the mean and the variance of the distribution? \n" ); document.write( "mean = np = 5*0.3 = 1.5 \n" ); document.write( "std = sqrt[npq] = sqrt[1.5*0.7] = 1.02 \n" ); document.write( "--------------------------------------------- \n" ); document.write( " 5. can the distribution by approximated by a normal distribution? \n" ); document.write( "I'll leave that to you. \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( "------------------------- \n" ); document.write( " |