Quick Answer
What is a combination? A combination is the number of ways to choose r items from a set of n distinct items where order does not matter.
Formula:
- nCr = n! / (r!(n - r)!)
Simple example: How many ways to choose 3 cards from a deck of 9?
- 9C3 = 9! / (3! × 6!) = 9×8×7 / (3×2×1) = 84
Key difference:
- Combinations: Order doesn't matter (selections)
- Permutations: Order matters (arrangements)
Quick reference:
- 5C2 = 10
- 10C3 = 120
- 52C5 = 2,598,960 (poker hands)