When tackling problems involving combinations, it's essential to understand that combinations are a way to calculate how many different groups or subsets you can form from a larger set. Unlike permutations, combinations don't take into account the order of items, which makes combinations incredibly useful in probability.
- The combination formula is given by: \[ C(n, k) = \frac{n!}{k!(n-k)!} \] Here, \( n \) represents the total number of items to choose from, and \( k \) represents how many items you want to choose.
- "!" denotes a factorial, which means multiplying a series of descending natural numbers. For example, \(5! = 5 \times 4 \times 3 \times 2 \times 1 = 120\).
For example, in this exercise, you're selecting 5 questions from a total of 10. Using combinations, you determine there are 252 possible ways or groups in which this selection can be done.