document.write( "Question 1203299: Consider a box containing 3 faulty and 2 good fuses. Two fuses are chosen at random from the box. What is the probability of choosing:
\n" );
document.write( "a) No faulty fuse
\n" );
document.write( "b) 1 faulty fuse
\n" );
document.write( "c) 2 faulty fuses
\n" );
document.write( "Hence, draw the probability distribution table for event X, the number of faulty fuses obtained. \n" );
document.write( "
Algebra.Com's Answer #838744 by Theo(13342)![]() ![]() You can put this solution on YOUR website! the probability of choosing a faulty fuse on the first try is 3/5. \n" ); document.write( "the probability of choosing a good fuse on the first tey is 2/5. \n" ); document.write( "you choose two fuses at random.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the probability of choosing two good fuses is 2/5 * 1/4 = 2/20 = 1/10. \n" ); document.write( "this is the same as choosing 0 faulty fuses.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the probability of choosing two faulty fuses is 3/5 * 2/4 = 6/20 = 3/10.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the probability of choosing one faulty fuse is (3/5 * 2/4) + (2/5 * 3/4) = 6/20 + 6/20 = 12/20 = 6/10.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the total possible combinations of getting 2 elements out of 5 elements, when 3 are faulty and 2 are good would be:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "let the faulty fuses be f1, f2, and f3. \n" ); document.write( "let the good fuses be g1, g2.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "you are drawing 2 fuses out of 5.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the possible combinations are:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "f1 f2 = 0 good \n" ); document.write( "f1 f3 = 0 good \n" ); document.write( "f1 g1 = 1 faulty 1 good \n" ); document.write( "f1 g2 = 1 faulty 1 good \n" ); document.write( "f2 f3 = 0 good \n" ); document.write( "f2 g1 = 1 faulty 1 good \n" ); document.write( "f2 g2 = 1 faulty 1 good \n" ); document.write( "f3 g1 = 1 faulty 1 good \n" ); document.write( "f3 g2 = 1 faulty 1 good \n" ); document.write( "g1 g2 = 0 faulty\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "total of 0 good is 3/10 \n" ); document.write( "total of 0 faulty is 1/10 \n" ); document.write( "total of 1 faulty 1 good is 6/10\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "you could also annalyze this using combination formulas of c(n,x), where n is the total number of possibilities and x is the desired number of possibilities.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "the formulas becomes:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "for 0 good = c(3,2) / c(5,2) = 3/10. \n" ); document.write( "for 0 faulty = c(2,2) / c(5,2) = 1/10. \n" ); document.write( "for 1 faulty 1 good = c(3,1) * c(2,1) / c(5,2) = 6/10.\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "note that c(n,x) is equal to n! / (x! * (n-x)!)\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "as an example: c(5,2) is equal to: \n" ); document.write( "5! / (2! * 3!) which is equal to: \n" ); document.write( "(5*4*3!) / (2! * 3!) which is equal to: \n" ); document.write( "(5*4) / 2! which is equal to: \n" ); document.write( "(5*4) / (2*1) which is equal to: \n" ); document.write( "20 / 2 which is equal to: \n" ); document.write( "10\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "your solutions are:\r \n" ); document.write( " \n" ); document.write( "\n" ); document.write( "a) No faulty fuse = 1/10 \n" ); document.write( "b) 1 faulty fuse = 6/10 \n" ); document.write( "c) 2 faulty fuses = 3/10 \n" ); document.write( " |