Binomial Coefficient
Context: FIT1058_MOC Β· counts the size- subsets of an -set Β· the size-layers of the Power Set Β· obeys Pascalβs identity
Quick Revision
- π― Objective: = number of -subsets of an -set β βn choose kβ.
- π¦ Core Components: closed form β symmetry β Pascalβs identity.
- β‘ Key Constraint: (size-layers of the Power Set).
π Core
1. The Coefficient
2. Closed Form
- Ordered first β .
- Correct for order β each subset counted times βΉ .
3. Identities
- Symmetry β (include vs exclude).
- Pascal β (contains vs omits a fixed element).
Key identities:
βοΈ Core Decision Matrix
| Case | Value | Reason |
|---|---|---|
| 1 | empty subset | |
| 1 | whole set | |
| single elements | ||
| leave one out |
When It Flips: two computation routes β closed form (direct) or Pascal's identity (recursive, no large factorials, good for many coefficients). Outside , .
π Exam Execution Trace
Manual Execution Trace
Pascalβs triangle rows:
| Step / State | Row | |
|---|---|---|
| 0 (Init) | 0 | 1 |
| 1 | 1 | 1 1 |
| 2 | 2 | 1 2 1 |
| 3 | 3 | 1 3 3 1 |
β οΈ Common Mistakes
- π‘ Divide by β ordered selection counts each subset times; forgetting the division confuses permutations with combinations.
π§ Active Recall
Derive from first principles.
- Hint: Order then correct.
Answer
- Short answer: Ordered -selections number ; each subset arises from orderings, so divide by .
- Why: Overcount β combinations = permutations Γ· .
State and justify Pascal's identity combinatorially.
- Hint: Contains vs omits an element.
Answer
- Short answer: : subsets with () + subsets without ().
- Why: Disjoint + exhaustive β the two cases add; the rule builds Pascalβs triangle.
Why does , and what are and ?
- Hint: Include βΊ exclude.
Answer
- Short answer: Choosing to include = choosing to exclude; .
- Why: Bijection β one way to choose nothing/everything.