20 Verified Exam-Style Problems · Full Solutions Included
Arranging r objects from n distinct objects where order matters.
Keywords: arrange, order, rank, sequence, line up, schedule, assign position, 4-digit number
Choosing r objects from n distinct objects where order does not matter.
Keywords: choose, select, committee, group, team, subset, sample, combination, handshake
| Formula | Value / Rule | Type |
|---|---|---|
| 0! = 1 | By definition | P |
| nP0 = 1, nPn = n! | Select none or all | P |
| nC0 = nCn = 1 | Choose none or all | C |
| nCr = nC(n−r) | Symmetry property | C |
| nCr = nPr ÷ r! | Relationship P & C | C |
| nCr + nC(r−1) = (n+1)Cr | Pascal's Identity | C |
| Circular: (n−1)! | n people around a table | P |
| Repetition allowed: n^r | r slots, n choices each | P |
| No two adjacent: fix others, fill gaps | Restriction technique | P |
| Type | Description | Core Idea |
|---|---|---|
| 1 | Basic Permutation | nPr = n!/(n−r)! |
| 2 | Basic Combination | nCr = n!/(r!(n−r)!) |
| 3 | Permutation with Restriction | Fix restricted items → arrange rest |
| 4 | Combination with Restriction | Total − excluded OR case-by-case |
| 5 | Circular / Special | (n−1)! or n^r |