Permutations & CombinationsJEE Main

Counting ordered and unordered selections — interactive Mathematics simulation for IIT-JEE.

Concept

Counting problems split into two kinds. When order matters you count permutations (nPr^nP_r); when it doesn't you count combinations (nCr^nC_r). Since each combination can be ordered in r!r! ways, nPr=nCrr!^nP_r = {}^nC_r \cdot r!.

Key formula

nPr=n!(nr)!,nCr=n!r!(nr)!^nP_r = \frac{n!}{(n-r)!}, \qquad ^nC_r = \frac{n!}{r!\,(n-r)!}

Derivation

Filling rr ordered slots from nn items gives n(n1)(nr+1)=n!/(nr)!n(n-1)\cdots(n-r+1) = n!/(n-r)! choices — that is nPr^nP_r.

If the order of the chosen rr is irrelevant, every group is counted r!r! times, so we divide: nCr=nPr/r!=n!/[r!(nr)!]^nC_r = {}^nP_r/r! = n!/[r!(n-r)!]. These combinations are exactly the entries of Pascal's triangle.

Scenarios to explore

  • Permutations & Combinations — nPr, nCr and Pascal's triangle.

Real-world applications

  • Probability (counting favourable vs total outcomes).
  • Binomial theorem coefficients.
  • Team selection, seating and arrangement problems.

JEE exam tips

  • nCr=nCnr^nC_r = {}^nC_{n-r} — choose the smaller rr to compute faster.
  • Pascal's rule: nCr=n1Cr1+n1Cr^nC_r = {}^{n-1}C_{r-1} + {}^{n-1}C_r.
  • Sum of a Pascal row rnCr=2n\sum_r {}^nC_r = 2^n.

Common mistakes

  • Using a permutation when order doesn't matter (over-counts by r!r!).
  • Forgetting nCr=nCnr^nC_r = {}^nC_{n-r} (the symmetry of Pascal's triangle).
  • Treating 0!=00! = 0 — it is defined as 11.

Exam traps to avoid

  • 'At least one' problems are often easier via the complement (2n2^n total − none).
  • Circular arrangements of nn objects give (n1)!(n-1)!, not n!n!.