document.write( "Question 1105974: Experience has shown that 9/200 of all CDs produced by a certain machine are defective. If a quality control technician randomly tests twenty CDs, compute each of the following probabilities:
\n" );
document.write( " i- P(exactly one is defective)
\n" );
document.write( " ii- P(half are defective)
\n" );
document.write( " iii- P( no more than two are defective)
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #720895 by rothauserc(4718) You can put this solution on YOUR website! Use the Binomial probability distribution \n" ); document.write( ": \n" ); document.write( "Probability (P) ( k successes in n trials) = nCk * p^k * (1-p)^(n-k), where nCk = n! / (k! * (n-k)!) \n" ); document.write( ": \n" ); document.write( "we know that p = 9/200 = 0.045, n = 20 \n" ); document.write( ": \n" ); document.write( "i) P ( 1 is defective out of 20 ) = 20C1 * (0.045)^1 * (1-0.045)^(20-1) = 0.375 \n" ); document.write( ": \n" ); document.write( "ii) P ( 10 are defective out of 20 ) = 20C10 * (0.045)^10 * (1-0.045)^(20-10) = 0.000 \n" ); document.write( ": \n" ); document.write( "iii) P( no more than two are defective) = P ( 0 are defective out of 20 ) + P ( 1 is defective out of 20 ) + P ( 2 are defective out of 20 ) = 0.398 + 0.375 + 0.168 = 0.941 \n" ); document.write( ": \n" ); document.write( " \n" ); document.write( " |