Permutations vs. Combinations: Core Distinctions
Permutations and combinations solve fundamentally different counting problems. A permutation is an ordered arrangement: selecting 3 people from 5 for a podium (1st, 2nd, 3rd place) yields 60 different permutations because ABC differs from BCA. Order matters absolutely.
A combination is an unordered selection: choosing the same 3 people for a committee yields just 10 combinations because ABC and BCA represent the same group. Order is irrelevant.
Consider a deck of cards. The number of ways to deal a 5-card hand is a combination problem (13 million possibilities). The number of ways to arrange those 5 cards in a sequence is a permutation problem (much larger). Both calculations answer "how many?" but in different contexts.
Real-world applications clarify the distinction: lottery draws use combinations (your ticket matches 6 numbers regardless of order), while sprint race medals use permutations (first-place finisher matters). Probability calculations often require one or the other—using the wrong method produces nonsensical results.
Permutation and Combination Formulas
Both calculations rely on factorial notation, where n! means multiplying all positive integers up to n (for example, 5! = 5 × 4 × 3 × 2 × 1 = 120).
Combinations: C(n,r) = n! / (r! × (n−r)!)
Permutations: P(n,r) = n! / (n−r)!
n— Total number of distinct objects available for selectionr— Number of objects you are selecting or arranging from the set
How to Calculate Step-by-Step
For combinations:
- Identify n (total objects) and r (objects to choose)
- Calculate n! using the factorial function
- Calculate r! and (n−r)!
- Divide: n! by the product of r! and (n−r)!
Example: Choosing 3 people from 8 for a committee. C(8,3) = 40,320 / (6 × 120) = 56 possible committees.
For permutations:
- Identify n (total objects) and r (objects to arrange)
- Calculate n! and (n−r)!
- Divide: n! by (n−r)!
Example: Arranging 3 people from 8 as president, vice president, and treasurer. P(8,3) = 40,320 / 120 = 336 possible arrangements.
For large values, scientific notation (mantissa and exponent) displays results that exceed standard number formats. A result of 2.4 × 10³² means 2.4 followed by 32 zeros.
Common Calculation Pitfalls
Avoid these frequent mistakes when determining permutations or combinations:
- Confusing order relevance — The trickiest error is selecting the wrong formula. Ask yourself: does the arrangement sequence matter for the problem? If you're assigning job titles (manager, assistant, intern), use permutations. If you're selecting members for a committee with equal status, use combinations. Getting this wrong reverses your answer by orders of magnitude.
- Impossible parameter values — Values where r > n (selecting more objects than available) produce undefined results. Similarly, negative numbers yield no meaningful combinatorial interpretation. Ensure r ≤ n and both are non-negative integers before calculating.
- Mishandling repetition scenarios — The formulas provided assume no repetition—each object is distinct and selected at most once. If you're choosing with replacement (like rolling dice multiple times), different formulas apply. Lottery tickets, tournaments, and committee selections typically prohibit repetition; manufacturing quality control or password creation problems often involve repetition.
- Factorial overflow in manual calculation — Hand-calculating 20! or higher becomes impractical (20! exceeds 2 trillion). Always use a calculator for factorials beyond 12!. Off-by-one errors in factorial computation are common when done manually, cascading into wrong final answers.
Practical Applications and Real-World Contexts
Combinations dominate selection problems: lottery games (pick 6 from 49), hand selection in poker (2.6 million five-card hands), test question selection (how many ways to choose 5 questions from a 20-question bank), and clinical trial recruitment (how many ways to select 50 patients from 500 volunteers).
Permutations govern sequencing and arrangement: ranking competitors (1st, 2nd, 3rd in a race), scheduling shifts (assigning 5 staff to specific time slots), password generation (distinct characters in a sequence), and seating arrangements (who sits where at a table).
Probability calculations frequently combine both: the chance of winning a lottery equals 1 divided by the number of possible combinations. Tournament bracket predictions multiply permutations across multiple rounds. DNA sequencing uses combinations to identify genetic marker patterns.