math

Permutation & Combination

Methods of counting arrangements: permutations count ordered arrangements, combinations count unordered selections.

Permutations count arrangements where order matters. Combinations count selections where order doesn't matter.

Formulas

  • Permutation: nPr = n! / (nβˆ’r)!
  • Combination: nCr = n! / [r!(nβˆ’r)!]

Example

Choosing 3 from 10 people:

  • Permutation (order matters β€” President, VP, Treasurer): 10P3 = 720
  • Combination (committee of 3 β€” order doesn't matter): 10C3 = 120

nPr is always β‰₯ nCr because permutations count more arrangements.

A Memory Trick

If the word "arrangement" or "order" appears in the problem (ranking, seating order, PIN codes), it's a permutation. If the word "selection" or "group" appears (committees, hands of cards, teams), it's a combination. Asking "does swapping two chosen items create a new outcome?" is the fastest test β€” if yes, permutation; if no, combination.

Combinations With Repetition

Standard combination formulas assume you can't pick the same item twice. When repetition is allowed (like choosing 3 scoops of ice cream from 5 flavors, where you could pick the same flavor multiple times), a different formula applies: C(n+rβˆ’1, r) β€” a common source of errors when the "no repeats" assumption is applied incorrectly.

Related Calculators

Related Terms