document.write( "Question 994679: if 7 mangoes are chosen at random from 10 mangoes of which 3 are rotten, what is the probability that exactly one is not rotten and the probability that at least one is rotten? \n" ); document.write( "
Algebra.Com's Answer #613691 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! if 7 mangoes are chosen at random from 10 mangoes of which 3 are rotten, what is the probability that exactly one is not rotten \n" ); document.write( "-- \n" ); document.write( "Binomial Problem with n = 7 and p(rotten) = 3/10; p(not rotten) = 7/10 \n" ); document.write( "---------------------- \n" ); document.write( "P(x = 1 not rotten) = 7C1*(7/10)*(3/10)^6 = binompdf(7,7/10,1) = 0.0036 \n" ); document.write( "-------------------------\r \n" ); document.write( "\n" ); document.write( "and the probability that at least one is rotten? \n" ); document.write( "P(1<= x <= 7) = 1 - P(x = 0 rotten) = 1 - (7/10)^7 = 0.9177 \n" ); document.write( " \n" ); document.write( "--------------- \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |