document.write( "Question 1157874: Trees planted by a landscaping firm have a 90% one-year survival rate. If they plant 12 trees in a park, what is the following probabilities:
\n" );
document.write( "1. All the trees survive one year.
\n" );
document.write( "2. At least 10 trees survive one year.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #780778 by Boreal(15235)![]() ![]() You can put this solution on YOUR website! 1. this has .90^12 probability or 0.2824 \n" ); document.write( "2. this means 10,11,or 12 trees survive \n" ); document.write( "Can use the calculator or do it by hand for 10 and 11 \n" ); document.write( "for 10 it is 12C10^0.9^10*0.1^2=0.2301 \n" ); document.write( "for 11 It is 12*.9^11*.1=0.3766 \n" ); document.write( "the sum of those three is 0.8891\r \n" ); document.write( "\n" ); document.write( "calculator do 1-binomcdf(12,.9,9), the calculator can only do the left side of the binomial, which isn't what we want. We find the cumulative probability of 0 to 9 trees and subtract that from 1 to get the probability we want,. \n" ); document.write( " |