Combinations
A combination is a selection of objects without regard to order. Choosing from a pool is the same combination as choosing or . Combinations are used for committees, hands of cards, subsets , anywhere "who is in" matters but "in what order" does not.
Definitions
The number of ways to choose objects from distinct objects (without regard to order) is read " choose ". Some textbooks write .
Defined for . By convention if or .
Why in the denominator?
Compared to permutations: choosing from and also arranging them gives . But every unordered selection of objects corresponds to different orderings. So
Important identities
-
Symmetry: . Choosing to include is the same as choosing to exclude.
-
Boundary: . .
-
Pascal's identity: . (Used to build Pascal's triangle.)
-
Sum of a row: . (Total number of subsets of an -set.)
Proof of Pascal's identity
We count subsets of size from . Either the element is in the subset or not.
- If is in: we still need to choose more from , in ways.
- If is out: choose all from , in ways.
Total: .
When to use combinations
- Committees. Select a group; order doesn't matter.
- Card hands. Hand of cards from : .
- Subsets of a set. Choose any subset of size .
- Lottery, sampling. Pick tickets/balls.
Pascal's triangle
Build it row by row using Pascal's identity:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
Row contains .
Worked examples
Example 1. Compute .
.
Example 2. From a group of men and women, how many committees of men and women can be formed?
.
Example 3. How many ways can cards be chosen from a standard -card deck?
.
Example 4. How many lines can be drawn through any two of points, no three of which are collinear?
A line is determined by two points (since no three are collinear). Number of pairs: .
Example 5 (harder). From red, blue and green balls, in how many ways can we select balls so that at least one is red?
Total selections of from : .
Selections with no red ball (all from blue+green): .
Selections with at least one red: .
Try it yourself
- Compute , , .
- Verify for .
- Use Pascal's identity to find .
- In how many ways can players be chosen from a squad of ?
- From a group of men and women, how many committees of contain at least women?
- How many diagonals does a convex polygon with vertices have?
- From cards: how many -card hands contain exactly aces?
- Find : .
- How many -element subsets of have all elements odd?
- How many ways can jobs be assigned to workers, one job each? (This is a permutation, not combination , practice distinguishing.)
- Show .
- In a class of students, in how many ways can a sub-committee of be chosen (no roles)?
Pitfalls / Tricks
- Order matters? If yes, permutation. If no, combination.
- "How many subsets of size " . "How many sequences of length " .
- "At least" and "at most" problems often use complement: total minus the easier case.
- Insight. Whenever a problem says "choose", "select", "committee", "team", "group" , it's a combination. Whenever it says "arrange", "order", "sequence", "queue", "line up" , it's a permutation.