document.write( "Question 346629: 4. Suppose that 7% of the bolts produced by a machine are defective. If 10 bolts are chosen from a huge shipment and inspected, determine the probability that\r
\n" );
document.write( "\n" );
document.write( "a. exactly one bolt is defective
\n" );
document.write( "b. at least two bolts are defective
\n" );
document.write( "c. at most one bolt is defective
\n" );
document.write( "d. at least one bolt is defective.
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #247822 by stanbon(75887)![]() ![]() ![]() You can put this solution on YOUR website! Suppose that 7% of the bolts produced by a machine are defective. If 10 bolts are chosen from a huge shipment and inspected, determine the probability that \n" ); document.write( "---- \n" ); document.write( "Binomial Problem with n=10 and p = 0.07 \n" ); document.write( "----- \n" ); document.write( "a. exactly one bolt is defective \n" ); document.write( "P(x=1) = 10C1(0.07)*(0.93)^9 = binompdf(10,0.07,1) = 0.3643 \n" ); document.write( "---------------------------------------------------------------- \n" ); document.write( "b. at least two bolts are defective \n" ); document.write( "Ans: 1-binomcdf(10,0.07,1) = 0.1517 \n" ); document.write( "----------------------------------------- \n" ); document.write( "c. at most one bolt is defective \n" ); document.write( "Ans: binomcdf(10,0.07,1) = 0.8483 \n" ); document.write( "----------------------------------------- \n" ); document.write( "d. at least one bolt is defective. \n" ); document.write( "Ans: 1-binomcdf(10,0.07,0) = 0.5160 \n" ); document.write( "======================================== \n" ); document.write( "Cheers, \n" ); document.write( "Stan H. \n" ); document.write( " \n" ); document.write( " |