document.write( "Question 968975: The probability of a light bulb being defective is 0.02. If Home Depot buys 100 bulbs, find the probability that they get at
\n" );
document.write( " least one that is defective. \n" );
document.write( "
Algebra.Com's Answer #592056 by rothauserc(4718)![]() ![]() You can put this solution on YOUR website! this uses binomial probability \n" ); document.write( "p = .02, q = .98, n = 100 \n" ); document.write( "********************************************** \n" ); document.write( "binomial probability formula is \n" ); document.write( "Probability ( X = k ) = (combination of n things taken k at a time) * p^k * q^(n-k) \n" ); document.write( "********************************************** \n" ); document.write( "Probability ( X > or = 1 ) = 1 - P( X = 0 ) \n" ); document.write( "P( X = 0 ) = combination of 100 light bulbs taken 0 at a time) * (.02)^0 * (.98)^100 = (( 100! / (0! * (100 - 0)!)) * 1 * 0.132619556 \n" ); document.write( "P( X = 0 ) = 1 * 0.132619556 approx 0.13 \n" ); document.write( "Probability ( X > or = 1 ) = 1 - 0.13 = 0.87 \n" ); document.write( "therefore, \n" ); document.write( "probability that they get at least one that is defective is 0.87 \n" ); document.write( " |