🇺🇸 US: C(n,r) / P(n,r) 🇬🇧 UK: ⁿCᵣ / ⁿPᵣ 🌐 IB: nCr notation

Permutation & Combination Calculator

Calculate nPr (permutations — order matters) and nCr (combinations — order doesn't matter) with step-by-step working. Exact results using BigInt for any n up to 170.

Quick Reference
nPr = n!/(n−r)!  ·  nCr = n!/(r!(n−r)!)  ·  nPr = nCr × r!  ·  Order matters → permutation. Order irrelevant → combination.
nPr (permutations) = order matters  ·  nCr (combinations) = order doesn't matter
UK notation: ⁿPᵣ and ⁿCᵣ  ·  US notation: P(n,r) and C(n,r)  ·  IB: Prn and Crn
Country / Curriculum Permutation Notation Combination Notation Binomial Symbol
🇺🇸 US (AP Stats, SAT) P(n,r) or nPrC(n,r) or nCr(n choose r)
🇬🇧 UK A-Level (Edexcel/AQA) ⁿPᵣⁿCᵣ(n r) — binomial coefficient
🌐 IB Mathematics P(n,r)C(n,r) or nCrSame as nCr
🇩🇪 Germany (Abitur) n! / (n-k)! — VariationKombination ₙCₖ(n k)
🇯🇵 Japan (数学B) nPr — 順列nCr — 組合せ(n r)
🇫🇷 France (Terminale) Arrangement AⁿₖCombinaison Cⁿₖ(n k)

Frequently Asked Questions

How do I know whether to use permutations or combinations?

Ask: "Does the order matter?" If yes → permutation. If no → combination. Examples: Passwords (order matters) → permutation. Lottery numbers (which numbers you pick, not order) → combination. Ranking candidates (1st, 2nd, 3rd) → permutation. Choosing a committee → combination. Seating arrangements → permutation. Choosing pizza toppings → combination.

Why does the UK use ⁿCᵣ notation but the US uses C(n,r)?

Both notations mean exactly the same thing — it's purely a typographic convention adopted by different education systems. UK Edexcel and AQA exam boards use ⁿCᵣ (superscript-subscript format) on their formula sheets. US textbooks and AP Statistics use C(n,r) or the horizontal notation nCr. IB Mathematics uses both interchangeably. In computing (Python, Excel), it's written as comb(n, r) or COMBIN(n, r).