document.write( "Question 610992: How many different committees of 5 people can be formed from a group of 12 volunteers? Is that a permutation or combination? \n" ); document.write( "
Algebra.Com's Answer #384731 by ashipm01(26)\"\" \"About 
You can put this solution on YOUR website!
This would be a combination since the order each person is selected in does not matter. So the following subcommittees are all the same even though the ordering is different:
\n" ); document.write( "{1, 2, 3, 4, 5}, {5, 4, 3, 2, 1}, {2, 3, 5, 1, 4}\r
\n" ); document.write( "\n" ); document.write( "Since it does not matter the ordering of the people in the groups, it is a combination.\r
\n" ); document.write( "\n" ); document.write( "So now you can use the n choose r function:
\n" ); document.write( "\"ncr%28n%2C+r%29+=+%28n%21%29%2F%28r%21%2A%28n-r%29%21%29\"\r
\n" ); document.write( "\n" ); document.write( "Typically it is written as two numbers, one on top of the other, inside a pair of parenthesis, but I am not sure how to format it like that on this site so I called it ncr(n, r) which means \"n choose r\".\r
\n" ); document.write( "\n" ); document.write( "So substituting 12 for n and 5 for r in the above equation yields a value of 792 possible ways of choosing 5 people at a time from a set of 12 people.
\n" ); document.write( "
\n" );