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.
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 nPr | C(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 nCr | Same as nCr |
| 🇩🇪 Germany (Abitur) | n! / (n-k)! — Variation | Kombination ₙ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).