document.write( "Question 29258: There are 10 players on a softball team. How many ways can the first 3 batters be chosen?
\n" );
document.write( " \n" );
document.write( "
Algebra.Com's Answer #16085 by Nate(3500)![]() ![]() ![]() You can put this solution on YOUR website! We are going to use permutations: \n" ); document.write( "the formula: P(n,r)= (n!)/(n-r)! \n" ); document.write( "P(10,3) = (10!)/(7!) \n" ); document.write( "P(10,3) = (10)(9)(8) \n" ); document.write( "there would be 720 different ways \n" ); document.write( " |