document.write( "Question 368260: Quality Control: A factory produces fuses, which are packaged in boxes of 10. Three fuses are selected at random from each box for inspection. The box is rejected if at least one of these three fuses is defective. What is the probability that a box containing five defective fuses will be rejected?\r
\n" );
document.write( "\n" );
document.write( "The answer is 11/12 which = .917, but how is it done?\r
\n" );
document.write( "\n" );
document.write( "Thank you in advanced... \n" );
document.write( "
Algebra.Com's Answer #262412 by robertb(5830)![]() ![]() You can put this solution on YOUR website! The experiment follows a hypergeometric distribution: there are 5 good fuses and 5 bad fuses. \n" ); document.write( "1st case, 1 bad and 2 good fuses: # of ways is C(5,1)*C(5,2) = 50. \n" ); document.write( "2nd case, 2 bad and 1 good fuse: # of ways is C(5,2)*C(5,1) = 50. \n" ); document.write( "3rd case, 3 bad and 0 good fuse: # of ways is C(5,3)*C(5,0) = 10. \n" ); document.write( "The number of ways of choosing any 3 out of 10 fuses in a box is C(10,3) = 120. \n" ); document.write( "Therefore the probability is (50+50+10)/120 = 110/120 = 11/12. \n" ); document.write( " |