Combinations Versus Permutations

Combinations and permutations address similar questions but yield different answers because they treat order differently.

  • Combinations: Selections where the order of chosen items is irrelevant. Choosing 3 people for a committee from 10 candidates produces one combination regardless of selection sequence.
  • Permutations: Arrangements where the order matters. Awarding gold, silver, and bronze medals to 10 competitors generates different permutations based on who receives which medal.

This distinction is crucial: the same set of objects counted as a combination will always yield a smaller number than when counted as a permutation, because multiple orderings collapse into a single combination.

The Combinations Without Repetition Formula

The standard formula calculates how many ways you can choose r items from n distinct objects when order is irrelevant and each object appears at most once.

C(n,r) = n! ÷ (r! × (n − r)!)

  • C(n,r) — The total number of possible combinations without repetition
  • n — The total count of distinct objects available to choose from
  • r — The sample size, or how many objects you're selecting
  • ! — Factorial: the product of all positive integers up to that number (e.g., 5! = 5 × 4 × 3 × 2 × 1 = 120)

Worked Example: Selecting Four Numbers from Ten

Imagine you want to know how many unique 4-digit combinations can be formed using digits 0–9, where each digit appears only once.

Step 1: Identify your variables. You're choosing 4 numbers (r = 4) from 10 available digits (n = 10).

Step 2: Apply the formula.

C(10,4) = 10! ÷ (4! × 6!)

= 3,628,800 ÷ (24 × 720)

= 3,628,800 ÷ 17,280

= 210

Therefore, exactly 210 distinct combinations exist. This is substantially fewer than permutations, which would account for all possible orderings.

Common Pitfalls and Practical Considerations

Avoid these mistakes when calculating or interpreting combinations without repetition.

  1. Confusing 'no repetition' with 'no replacement' — 'No repetition' means each item appears at most once in any single combination. You're not drawing with or without replacement in the probability sense; rather, you're simply counting selections where duplicates don't exist within that selection.
  2. Forgetting that order doesn't matter — If you accidentally swap two items and think you've created a new combination, you haven't. Only the membership of the set matters. Verify this by checking whether your problem asks 'how many ways' or 'in how many orders'—the latter signals permutations.
  3. Exceeding the constraint n ≥ r — You cannot choose more items than are available. If <em>r</em> > <em>n</em>, the result is mathematically undefined (zero combinations exist). Always validate that your sample size doesn't exceed your population.
  4. Mishandling large factorials — Factorials grow explosively. Computing 50! directly causes overflow in simple calculators. Use this tool or logarithm properties to handle large numbers, or express results in scientific notation.

When Combinations Without Repetition Matter

This concept appears across many domains:

  • Lottery design: Calculating odds of winning requires knowing the exact number of possible combinations.
  • Genetics: Determining genetic variation when selecting alleles from a population.
  • Software testing: Estimating test cases needed to cover all combinations of features without redundant testing.
  • Sampling: In quality control, choosing items for inspection from a batch of fixed size.
  • Team formation: Counting ways to assemble groups of fixed size from a candidate pool.

In each case, the absence of order and the absence of repetition create a specific combinatorial structure that this formula precisely captures.

Frequently Asked Questions

What is the mathematical definition of a combination without repetition?

A combination without repetition is a selection of <em>r</em> distinct items from a set of <em>n</em> available objects, where the order of selection is immaterial and no item is chosen more than once. Mathematically, it represents a subset of size <em>r</em> drawn from a set of size <em>n</em>. The notation C(n,r), also written as 'n choose r' or the binomial coefficient, counts these distinct subsets. This definition assumes a finite set and that <em>r</em> ≤ <em>n</em>.

How do you derive the combinations without repetition formula?

The derivation begins with permutations: there are n!/(n−r)! ways to arrange <em>r</em> items chosen from <em>n</em> objects. However, this counts every distinct set <em>r</em>! times—once for each possible ordering. Since combinations ignore order, we divide by <em>r</em>! to collapse these redundant orderings into a single combination. This yields C(n,r) = n! ÷ (r! × (n−r)!), which is the fundamental formula.

Why is the number of combinations with all 16 digits chosen equal to 1?

When selecting all available items (where <em>r</em> = <em>n</em> = 16), there is only one possible combination: the entire set itself. Using the formula: C(16,16) = 16! ÷ (16! × 0!) = 1. By definition, 0! = 1, so the numerator and denominator both equal 16!. Only one combination exists because there is no choice—you must take every item. This principle holds universally: C(n,n) = 1 for any valid <em>n</em>.

Can combinations without repetition be negative or fractional?

No. Combinations without repetition are always whole numbers (non-negative integers) because they count discrete, distinct selections. The formula produces only integers by virtue of its mathematical structure: the factorials in the numerator are always divisible by those in the denominator. Fractional or negative results would indicate either a computational error or invalid input values where <em>r</em> > <em>n</em>.

How does the number of combinations change as the sample size increases?

Generally, combinations increase as <em>r</em> grows, peaking when <em>r</em> = n/2, then decline symmetrically to 1 as <em>r</em> approaches <em>n</em>. For example, with <em>n</em> = 10: C(10,0) = 1, C(10,5) = 252 (maximum), C(10,10) = 1. This symmetry exists because C(n,r) = C(n, n−r). Understanding this shape helps anticipate outcomes and verify calculations.

What is the practical difference between combinations and arrangements when solving real problems?

Combinations are appropriate when the order of selection is irrelevant (e.g., choosing members of a committee where all hold identical positions). Arrangements (permutations) apply when order matters (e.g., assigning committee positions like chair, treasurer, and secretary). Always ask: does swapping two items create a meaningfully different outcome? If no, use combinations; if yes, use permutations.

More statistics calculators (see all)