Permutations vs Combinations
Permutations and Combinations · Class XI
Pick n and r. Compare P(n,r) (order matters) with C(n,r) (order does not).
- P(n, r)120
- C(n, r)20
- P/C ratio6
Formulas in this lab
- P(n, r)
- C(n, r)
- P/C ratio
Frequently asked questions
▶What is the difference between permutations and combinations?
Permutations $P(n, r) = \frac{n!}{(n-r)!}$ count ordered arrangements; combinations $C(n, r) = \frac{n!}{r!(n-r)!}$ count unordered selections. So picking $3$ from $5$ in order gives $60$ ways; in any order, $10$.
▶How do I use the permutations and combinations lab?
Slide $n$ and $r$. The lab returns $P(n, r)$, $C(n, r)$ and the ratio $P/C = r!$ — the number of orderings of $r$ items. Try $n = 6$, $r = 2$: $P = 30$, $C = 15$, ratio $2! = 2$.
▶Where do permutations versus combinations show up in JEE?
Number of $4$-letter passwords from $26$ letters with no repeats: permutations, $P(26, 4)$. Number of $4$-member committees from $26$ candidates: combinations, $C(26, 4)$. Reading the problem carefully — does order matter? — decides which formula to use.
▶Why is $0! = 1$?
By convention and to make formulas like $C(n, n) = \frac{n!}{n!\,0!} = 1$ consistent. There is exactly one way to arrange zero objects: do nothing. Setting $0! = 1$ keeps $C(n, 0) = 1$ and the binomial theorem clean. The lab uses this convention silently — try $r = 0$.