Permutations & Combinations
Apply concepts from Permutations & Combinations to problem-solving. Focus on numerical practice, shortcuts, and real-world applications.
Concept Core
Permutations and Combinations deal with counting the number of ways to arrange or select objects from a collection. The fundamental distinction is: permutations count ordered arrangements, combinations count unordered selections.
Fundamental Principle of Counting (FPC):
- Multiplication Principle: If task 1 can be done in m ways and task 2 in n ways, both tasks together can be done in m * n ways (sequential/independent events).
- Addition Principle: If task 1 can be done in m ways OR task 2 in n ways (mutually exclusive), total ways = m + n.
Factorial Notation: n! = n * (n-1) * (n-2) * ... * 2 * 1, with 0! = 1 by convention. Key property: n! = n * (n-1)!
Permutations (nPr): The number of ways to arrange r objects from n distinct objects in a definite order. nPr = n!/(n-r)!, where 0 <= r <= n. Special cases: nPn = n! (arrange all n objects), nP0 = 1, nP1 = n.
Combinations (nCr or C(n,r)): The number of ways to select r objects from n distinct objects without regard to order. nCr = n!/[r!(n-r)!], where 0 <= r <= n. Key properties: nCr = nC(n-r), nC0 = nCn = 1, nC1 = n, nCr + nC(r-1) = (n+1)Cr (Pascal's identity).
Permutations with Repetition: If among n objects, p are of one kind, q of another, r of a third, then arrangements = n!/(p! * q! * r!).
Circular Permutations: n distinct objects in a circle = (n-1)! ways. If clockwise and anticlockwise are indistinguishable (e.g., necklace), it becomes (n-1)!/2.
Permutations with Restrictions:
- Objects always together: Treat the group as one unit, arrange, then arrange within the group.
- Objects never together: Total arrangements - arrangements with them together.
- Objects in specific positions: Fix those objects first, then arrange remaining.
Combinations with Repetition: Selecting r objects from n types with repetition allowed = C(n+r-1, r).
Distribution Problems:
- Distributing n identical objects into r distinct groups: C(n+r-1, r-1) (each group can be empty).
- Distributing n identical objects into r distinct groups (none empty): C(n-1, r-1).
- Distributing n distinct objects into r distinct groups: r^n ways.
Derangements: Arrangements where no object occupies its original position. D(n) = n! * [1 - ! + ! - ! + ... + (-1)^n/n!]
The key problem-solving concept is correctly identifying whether the problem requires permutation (order matters) or combination (order doesn't matter), accounting for identical objects, restrictions, and whether to use direct counting or complementary counting (total - unwanted).
Key Testable Concept
The key problem-solving concept is correctly identifying whether the problem requires permutation (order matters) or combination (order doesn't matter), accounting for identical objects, restrictions, and whether to use direct counting or complementary counting (total - unwanted).
Comparison Tables
A) Key Formulas Quick Reference
| Formula | Expression | When to Use |
|---|---|---|
| nPr | n!/(n-r)! | Ordered selection of r from n distinct |
| nCr | n!/[r!(n-r)!] | Unordered selection of r from n distinct |
| Repeated permutations | n!/(p!q!r!...) | Arranging with identical objects |
| Circular permutation | (n-1)! | Arranging n distinct in circle |
| Necklace/garland | (n-1)!/2 | Circle with no distinction CW/CCW |
| Combinations with repetition | C(n+r-1, r) | Select r from n types, repetition allowed |
| Stars and bars (empty ok) | C(n+r-1, r-1) | n identical into r groups |
| Stars and bars (non-empty) | C(n-1, r-1) | n identical into r groups, none empty |
| Derangements D(n) | n! * sum((-1)^k/k!, k=0 to n) | No element in original position |
B) Common nCr Values
| n\r | 0 | 1 | 2 | 3 | 4 | 5 |
|---|---|---|---|---|---|---|
| 5 | 1 | 5 | 10 | 10 | 5 | 1 |
| 6 | 1 | 6 | 15 | 20 | 15 | 6 |
| 7 | 1 | 7 | 21 | 35 | 35 | 21 |
| 8 | 1 | 8 | 28 | 56 | 70 | 56 |
| 10 | 1 | 10 | 45 | 120 | 210 | 252 |
C) Problem Type Identification
| Keyword/Clue | Technique | Example |
|---|---|---|
| "arrange", "order", "sequence" | Permutation | Arranging letters of a word |
| "select", "choose", "committee" | Combination | Choosing a team |
| "at least", "at most" | Complementary counting | At least one girl in committee |
| "adjacent", "together" | Group as one unit | Two people always together |
| "not adjacent", "no two together" | Gap method or complement | No two vowels together |
| "distribute identical" | Stars and bars | Distributing balls into boxes |
| "divisible by" | Digit counting with constraints | Numbers divisible by 5 |
Study Materials
Available in the NoteTube app — start studying for free.
100 Flashcards
SM-2 spaced repetition flashcards with hints and explanations
114 Quiz Questions
Foundation and PYQ-style questions with AI feedback
15 Study Notes
Structured notes across 10 scientifically grounded formats
10 Summaries
Progressive summaries from comprehensive guides to cheat sheets
Frequently Asked Questions
Common questions about studying Permutations & Combinations for JEE Main 2027.