3.3.12 · D5Sequences & Series
Question bank — Pascal's triangle — combinatorial interpretation
Figure 1 — the map for this whole page. Every trap below points back to one entry, one diagonal, or one symmetry of this picture. Read the two red labels first: they show how "row " runs down the triangle and "position " runs across a row. The green cell is a worked reference — locate it now so the "spot the error" items feel concrete.

True or false — justify
True or false: Row of the triangle has exactly entries.
False. Row runs , so it has entries. Off-by-one here is the root of the "sum is because there are entries" error.
True or false: because you are choosing nothing.
False. There is exactly one way to choose nothing — the empty selection — so . Choosing zero items is a valid, unique act, not an impossible one.
True or false: and (the ordered-selection count, ) count the same thing whenever .
True. For a single pick there is nothing to reorder, so ; the divisor changes nothing.
True or false: Because , every row of Pascal's triangle is a palindrome.
True. Symmetry forces position to equal position , so reading the row left-to-right or right-to-left gives the same sequence.
True or false: The sum equals for every .
False. It is only for . For the single term is , not — an empty set has one even-sized subset (itself) and no odd-sized ones. Figure 3 shows the cancellation for .
True or false: is always a whole number even though the formula divides by .
True. It counts actual subsets, which cannot be fractional; the factorials in the denominator always divide the numerator exactly.
True or false: Pascal's rule still holds at the edge .
True but delicate. It reads ; we define (no way to choose a negative amount), so it correctly gives .
True or false: The number of even-sized subsets of a 5-element set is larger than the number of odd-sized subsets.
False. The alternating sum being (for ) means they are equal: each, summing to .
Spot the error
", so there are 60 ways to pick 2 from 5." — find the flaw.
The denominator must be , not just . Think of listing the 5 items in a row: orders all of them, and cancels the reshuffles of the 2 you chose — but the remaining reshuffles of the 3 you did not choose are still counted as different, even though "leave A, B, C behind" is one single act. Dividing by too gives the true .
"To get I add the two entries next to it in row 5." — what's wrong?
Pascal's rule adds the two entries in the row directly above (row 4, positions 1 and 2 → ), not the horizontal neighbours in the same row. Figure 2 shows one such up-arrow pair.
"Row sum is , so row 3 sums to ." — spot the mistake.
means raised to , i.e. , not times . Indeed .
" counts ordered pairs like (A,B) and (B,A) separately." — correct?
No. counts unordered sets, so is counted once. Ordered pairs would be the permutation count , exactly times larger.
"Since choosing gets harder as grows, increases with all the way to ." — flaw?
The values rise then fall, peaking in the middle. By symmetry , so is as small as ; the largest term sits at the centre.
"The Binomial Theorem is a separate fact; it has nothing to do with counting subsets." — correct?
Why questions
Why do we divide by rather than when converting ordered picks to combinations?
We over-counted each chosen set once per rearrangement of its members, and items rearrange in ways — so is the exact over-count factor for the selection, not .
Why is Pascal's rule a proof about a single element rather than about factorials?
Fixing element splits all subsets into two clean groups — those that include and those that don't — which are disjoint and exhaustive, so the Addition Principle hands us the sum for free.
Why does "each element is in or out" give and not or ?
Each of the elements makes an independent 2-way choice, so by the Multiplication Principle we multiply by itself times: .
Why does the symmetry need no algebra?
Every act of taking a -subset simultaneously leaves behind a unique -subset; this is a perfect pairing of the two collections, so their counts must match.
Why does for — where does the cancellation come from?
Algebraically it is just in the Binomial Theorem (put ). Combinatorially, adding an element flips every subset between "even-sized" and "odd-sized", pairing each even subset with exactly one odd subset; equal-size teams with opposite signs wipe each other out. Figure 3 draws these opposite-sign bars stacking to .
Why are the shallow diagonals of the triangle connected to Fibonacci numbers?
Summing entries along a shallow diagonal counts subsets with "no two adjacent" constraints, and those counts satisfy the same add-the-previous-two rule that defines Fibonacci numbers. Figure 4 highlights the exact entries on each diagonal and shows their sums forming
Why isn't defined when ?
You cannot choose more distinct items than exist, so the count is (or "undefined by the formula", since would need a factorial of a negative number).
Edge cases
What is and what does it count?
It is : there is exactly one way to choose nothing from nothing — the empty selection. This is why the triangle's apex (row 0) is a single .
What is for any , and why?
Always — there is only one way to take everything, leaving nothing behind, mirroring by symmetry.
If you extend Pascal's rule to compute row 0, what "parents" does the lone have?
It has no two entries above it; row 0 is a seed () that the rule cannot generate — every other entry is built from it downward.
What does the alternating sum tell you about the empty set (the row)?
It equals , correctly reporting that the empty set has one even-sized subset (itself, size ) and zero odd-sized subsets — the single case where even and odd counts differ.
For very large with fixed and small, does grow like a polynomial or exponentially in ?
Polynomially — is a degree- polynomial in , so with fixed it grows only as fast as .
The four figures, in one glance
- Figure 1 — the triangle with row/position labels and the reference cell . Use it for: every "reading the triangle" and "spot the error" item.
- Figure 2 — Pascal's rule as two up-arrows feeding one cell. Use it for: the "add the two above, not beside" trap.
- Figure 3 — the alternating sum as signed bars that cancel. Use it for: the even-vs-odd subset traps.
- Figure 4 — shallow diagonals highlighted, their sums giving Fibonacci . Use it for: the Fibonacci connection.



Connections
- Combinations and Permutations — the vs traps live here.
- Factorials — the source of the "which factorial do I divide by" confusion.
- Addition and Multiplication Principles — every "why" answer above leans on these.
- Binomial Theorem — the trick that de-mystifies the row sum.
- Hockey Stick Identity — another diagonal-pattern to stress-test your intuition.
- Fibonacci numbers — the shallow-diagonal edge case.