Counting Permutations vs Combinations
Permutations and combinations are the two fundamental counting techniques in discrete math and probability. These flashcards clarify when order matters (permutations) vs. when it doesn't (combinations), covering formulas, typical exam problems, and common student errors on CS and math exams.
Interactive Deck
5 CardsPermutation with repetition formula
Combination with repetition formula
Master this topic effortlessly.
Study G helps you master any topic effortlessly using proven learning algorithms and smart review timing
Download Study GFrequently Asked Questions
What is the difference between permutation and combination?
Permutation counts ordered arrangements — sequence matters. Combination counts unordered selections — only membership matters.
- Permutation: P(n,r) = n!/(n-r)!
- Combination: C(n,r) = n!/(r!(n-r)!)
- P(n,r) = r! * C(n,r)
How do I know which formula to use?
Ask: if I rearrange the selected items, is the outcome different? If yes — permutation. If no — combination. Example: a password is a permutation; a committee is a combination.
What is 0! and why does it equal 1?
By convention, 0! = 1. This ensures the permutation and combination formulas work correctly when all n items are selected (r = n), since P(n,n) = n! and C(n,n) = 1.
