
John B. answered 07/08/15
Tutor
4.9
(1,497)
Great Explainer
Hmmm, first, do you want combinations (the order in the group of 3 doesn't matter), or permutations (group order matters). In general the number of combinations is less than the number of permutations for a given group size.
Let's do combinations first. We're calculating C(12,3) or the number of combinations taken 3 at a time from a set of 12.
The general formula is C(n,x) = n!/((n-x)!*x!)
C(12,3) = 12! /( (12-3)! 3!) = 12! / (9!)(3!) where ! indicates factorial. Notice that the 9! in the denominator will cancel out the first 9 factors in the numerator so we'll be left with (10*11*12)/(1*2*3) = (5*11*4)/1 = 220.
For permutations, P(n,x) = n!/(n-x)!, so P(12,3) = 12!/(12-3)! = 12!/9!. The factors 1-9 will cancel leaving 10*11*12 = 1320 permutations.