Exercises — Pascal's triangle — combinatorial interpretation
Quick reminder of the tools we lean on (each earned in the parent note):
- = ==the number of ways to choose things from distinct things== .
- Pascal's rule: .
- Symmetry: .
- Row sum: .
For reference, here are the first rows:
Row 0: 1
Row 1: 1 1
Row 2: 1 2 1
Row 3: 1 3 3 1
Row 4: 1 4 6 4 1
Row 5: 1 5 10 10 5 1
Row 6: 1 6 15 20 15 6 1
Level 1 — Recognition
L1.1 Read a single entry
Problem. What number sits in row , position ? State what it counts.
Recall Solution
WHAT we do: read the triangle. Row is . Positions are numbered starting at , so position is the third number: . WHY / what it means: is the number of ways to choose objects from distinct objects.
L1.2 Identify a coefficient
Problem. In the expansion of , what is the coefficient of ?
Recall Solution
The Binomial Theorem says the coefficient of in is . Here and the power of is , so : the coefficient is . Check against the triangle: row is — the middle entry is . ✓
Level 2 — Application
L2.1 Evaluate with the formula
Problem. Compute two ways: by the ordered-then-divide method, and by the formula.
Recall Solution
Ordered-then-divide. Pick 3 items in order from 7: ordered picks. Each set of 3 was counted times (its orderings), so Formula. ✓
L2.2 Extend a row with Pascal's rule
Problem. Given row , build row without any factorials.
Recall Solution
WHAT we do: each new entry is the sum of the two entries directly above it (Pascal's rule). The ends are always . Row 7 . WHY: any subset of the elements either contains element or it doesn't — those two disjoint cases are exactly the two parents above.
L2.3 A real choosing problem
Problem. A committee of is chosen from people. How many possible committees?
Recall Solution
A committee is an unordered group, so we want a combination: . WHY combination, not permutation: the committee is the same committee however we list the names, so order must not be counted.
Level 3 — Analysis
L3.1 Row sum in disguise
Problem. From a set of distinct books, how many ways can you pick any number of books (including picking none)? Answer without adding eight separate binomial coefficients.
Recall Solution
"Any number of books" means we want , the sum of all of row . By the row-sum identity this equals WHY : decide independently for each book in or out — choices per book, books, so total selections (see the figure).

L3.2 Even vs odd subsets
Problem. Of the selections in L3.1, how many contain an even number of books (0, 2, 4, 6, or 8)?
Recall Solution
Set in : So . And . Therefore . Answer: even-sized selections. WHY it works: the flips the sign of every odd-sized subset; the total collapsing to forces even and odd counts to be equal.
L3.3 Symmetry to save work
Problem. Without computing both directly, explain why , then give the value.
Recall Solution
WHY they're equal: choosing which to take from is the same act as choosing which to leave — same set of choices, so same count. In symbols with . Value (via the easy side):
Level 4 — Synthesis
L4.1 Hockey Stick sum
Problem. Evaluate and identify the single binomial coefficient it equals.
Recall Solution
This is a diagonal running down the "position-2" column, and the Hockey Stick Identity says a diagonal that starts at and runs down to sums to : Here , , so the sum is . Numeric check: , and . ✓ WHY (repeated Pascal's rule): each can be rewritten and the terms telescope; geometrically the diagonal ("stick") plus its bottom neighbour collapses into one entry (the "blade") — see the figure.

L4.2 Fibonacci from shallow diagonals
Problem. The shallow diagonals of Pascal's triangle sum to Fibonacci numbers. Verify this for the diagonal .
Recall Solution
A shallow diagonal steps up-and-right: keep -style pairs where the top index falls by and the bottom rises by . is the fifth Fibonacci number (). ✓ WHY: Pascal's rule (each entry = sum of two above) is the same recursion as once you sum along these shallow lines. The figure shows the diagonal path.

L4.3 Committee with a fixed member
Problem. From people, a team of must be chosen, and Alice must be on the team. How many teams? Do it two ways and confirm they agree.
Recall Solution
Way 1 — direct. Alice is fixed, so we only choose the remaining from the other people: Way 2 — Pascal's rule made concrete. All teams of from : . Split on Alice: teams with Alice , teams without Alice . Check: . ✓ This split is Pascal's rule with "element " playing the role of Alice. Answer: teams.
Level 5 — Mastery
L5.1 Vandermonde-style split
Problem. A group has women and men. How many ways to form a committee of ? Split the count by the number of women and show the pieces add to the direct answer .
Recall Solution
Direct: . Split by number of women (multiplication + addition principles):
- :
- :
- :
- : Total: . ✓ WHY: for each fixed , choose women and men separately (multiply, by the Multiplication Principle); the cases are disjoint and exhaustive, so add them (Addition Principle). This is Vandermonde's identity .
L5.2 Prove a row-sum weighting
Problem. Show that , and verify for .
Recall Solution
Combinatorial proof. Count pairs of an -element set, in two ways.
- Way A (subset first): choose a subset of size in ways, then pick its leader in ways — sum over gives .
- Way B (leader first): choose the leader in ways, then each of the other elements is independently in or out of : ways. Total . Same object counted two ways . Verify : , and . ✓
L5.3 Full synthesis
Problem. A pizza shop has toppings. A customer wants a pizza with at least toppings. How many such pizzas? Use the row sum and subtract the disallowed cases.
Recall Solution
Total selections (any number of toppings): (each topping in or out). Subtract the "fewer than 2" cases:
- toppings (plain):
- topping: Answer: pizzas with at least toppings. WHY subtract: it's far easier to count the two forbidden cases and remove them from the full than to add directly (though that also gives ✓).
Recall One-line self-test
Which identity turns "sum a diagonal" into a single entry? ::: The Hockey Stick Identity, . Why is a forced committee member not a choice? ::: She occupies a seat for free; you only choose the remaining seats from the remaining people. How do you count "at least 2" from a total? ::: Subtract the and cases: .
Connections
- Pascal's triangle — combinatorial interpretation — the parent this page drills.
- Combinations and Permutations — why we divide by (L2.3).
- Addition and Multiplication Principles — the engine of L5.1.
- Hockey Stick Identity — L4.1.
- Fibonacci numbers — L4.2 shallow diagonals.
- Binomial Theorem — L1.2 and the even/odd trick in L3.2.
- Factorials — the raw material of every .