Permutations and Combinations
Core Titles
Key headlines and terms for quick recall- Factorial
- Permutation (order matters)
- Combination (order doesn't)
- Circular permutations of :
- Permutations with repetition
- Binomial theorem
- Pascal's identity
Basic Idea
What it is, why it matters, how it worksCounting rule of thumb
- Order matters → permutation
- Order doesn't matter → combination
Permutations
Number of ways to arrange items chosen from distinct items: Special case: arranging all items uses ways.
Circular arrangements of distinct objects: — fix one object and arrange the rest.
Permutations with repetition — objects, where are of type : Example: arrangements of the letters in "BANANA" = .
Combinations
Number of ways to choose items from :
Key identities:
- Pascal's rule:
Binomial theorem
Why this matters in Data Science
Sample-space sizes in probability, feature combinations in ML, -fold splits, model selection grids, A/B test arrangements.
Mind Map
Visual structure of the conceptCOUNTING
├── Order MATTERS → Permutation
│ ├── ⁿPᵣ = n! / (n−r)!
│ ├── All n items: n!
│ ├── Circular: (n−1)!
│ └── With repetition: n! / Π nᵢ!
├── Order DOESN'T matter → Combination
│ ├── ⁿCᵣ = n! / r!(n−r)!
│ ├── ⁿCᵣ = ⁿCₙ₋ᵣ
│ ├── Pascal: ⁿCᵣ = ⁿ⁻¹Cᵣ₋₁ + ⁿ⁻¹Cᵣ
│ └── Sum: Σ ⁿCᵣ = 2ⁿ
└── Binomial theorem (x+y)ⁿ = Σ ⁿCᵣ xⁿ⁻ʳ yʳ
Exam Q&A
Part A (2 marks) and Part B (20 marks) style questionsPart A (2 marks each)
Q1. State the formula for and . and .
Q2. How many ways can 5 people be seated around a round table? Circular permutations: .
Q3. State Pascal's identity. .
Q4. How many arrangements of the letters in MISSISSIPPI? .
Part B (20 marks)
Q. State and prove the Binomial theorem. Use it to find the coefficient of in .
Statement. For any non-negative integer :
Proof by induction on .
Base : LHS = 1, RHS = . ✓
Step. Assume the theorem for : .
Then
Shifting indices and using Pascal's identity :
Application — coefficient of in .
General term: . For we need :
Coefficient = 48384.