Explanation
This is a combination problem where we need to select groups of 3 students from 15, and the order of selection doesn't matter.
Formula Used
We use the combination formula:
(rn)=(n−r)!r!n!
Calculation
- n = 15 (total students)
- r = 3 (students per group)
(315)=(15−3)!⋅3!15!=12!⋅3!15!
=12!⋅3×2×115×14×13×12!=3×2×115×14×13=62730=455
Why Combination Instead of Permutation?
- Combination is used when order doesn't matter (selecting groups where {Student A, Student B, Student C} is the same as {Student B, Student A, Student C})
- Permutation would be used if the order mattered (like selecting president, vice-president, secretary)
Therefore, there are 455 different possible groups of 3 students that can be formed from 15 students.