document.write( "Question 909846: Suppose a class is containing 10 women and 7 men.
\n" );
document.write( "(a) In how many different ways can a team of 6 be chosen from the class?
\n" );
document.write( "(b) What if the team must contain exactly 4 women?
\n" );
document.write( "(c) What if the team must contain at least 4 women? \n" );
document.write( "
Algebra.Com's Answer #552046 by ewatrrr(24785)![]() ![]() You can put this solution on YOUR website! \n" ); document.write( "total 17: 10W, 7M \n" ); document.write( "(a) In how many different ways can a team of 6 be chosen from the class? 17C6 \n" ); document.write( " (b) What if the team must contain exactly 4 women? (10C4)(7C2) \n" ); document.write( " (c) What if the team must contain at least 4 women? (10C4)(7C2)+(10C5)(7C1)+(10C6)(7C0) \n" ); document.write( " |