2.7.11 · D5Statistics & Probability — Intermediate

Question bank — Combinations — nCr, Pascal's triangle

1,846 words8 min readBack to topic
Figure — Combinations — nCr, Pascal's triangle

Look at the triangle above: every valid sits inside the two orange edges (which are all 's, the and cases). Anything you'd write outside those edges is treated as — that's the visual meaning of " gives ".


True or false — justify

Each answer must contain a reason, not a verdict. Speak the "because" aloud. Assume (both whole numbers) unless a statement says otherwise.

and count the same thing whenever .
True — choosing one item and arranging one item are identical, since a single item has only ordering, so .
is always an integer even though the formula is a fraction.
True — it counts real committees, so it cannot be fractional; the in the denominator always divides exactly because contains the factors of every group's internal orderings.
only holds when .
False — for every in the valid range it holds; picking the to keep always simultaneously names the to discard, regardless of which is larger.
Increasing by 1 always increases for a fixed with .
True — provided , you gain new committees that include the new person while keeping all old ones, so the count strictly grows. (For it is false: for every , so nothing changes.)
Increasing by 1 always increases .
False — over the valid range the row rises then falls; peaks near and shrinks back to at , so for past the middle, raising decreases the count.
The sum of every entry in row of Pascal's triangle is .
True — each of the items is independently either in or out of a subset, giving subsets total, which is exactly . See Pascal's Triangle patterns.
counts ordered pairs of teams when you split people into a group of and a group of .
False — it counts one unordered choice; the split into two groups is a single decision, which is precisely why (the two names describe the same act).
For a valid combination, the items must be distinct.
True — the derivation divides by assuming every internal arrangement is genuinely different; if items repeat, those "arrangements" aren't distinct and the count over-corrects.

Spot the error

Each line states a wrong claim or step. The answer names the flaw and repairs it.

"A committee of 3 from 7 gives choices."
Wrong tool — permutations count ordered selections, but a committee has no positions. Each single committee of 3 people can be listed in different orders, so counts every committee exactly times; divide by to erase that ordering, giving .
" because choosing nothing gives no committee."
The empty committee is a valid, single choice; there is exactly one way to pick nothing, so , using from Factorials and 0!.
"In Pascal's triangle, each entry is the sum of its two neighbours in the same row."
The addition law adds the two entries diagonally above it, i.e. from the previous row — not same-row neighbours.
"."
The denominator is missing ; the correct formula is — forgetting the factor is the most common slip.
" is undefined so we write it as ."
When you cannot choose more items than exist, so directly; there's no need to invent negative — it's simply an impossible selection.
"From a club of 6 boys and 4 girls (10 people total), choose a 4-person team with at least one girl: just add up and you're done."
That ignores which of the 6 boys fill the remaining seats, so it undercounts; the clean route is total minus complement — all teams minus all-boy teams — (see Probability — counting outcomes).
" needs a hundred-digit factorial, so it's uncomputable by hand."
Use symmetry: — always convert to the smaller before multiplying.
"Since order doesn't matter, pairs, and each pair can be arranged 2 ways, so really there are 12."
The "arrange each pair 2 ways" step re-introduces the very ordering we removed; the whole point of dividing by was to treat those two arrangements as one — the answer stays .

Why questions

The reasoning is the answer — a bare fact scores nothing.

Why do we divide by and not by some other number?
Because every unordered group of size appears once for each of its own internal orderings, and items rearrange in exactly ways; dividing by collapses those duplicates into a single count.
Why is symmetric, i.e. why does choosing equal choosing ?
Every time you select the you keep, you have simultaneously and uniquely selected the you reject — one action, two descriptions, so the two counts must be equal.
Why does Pascal's rule add the two entries above instead of multiplying or subtracting them?
Because fixing one special person splits all committees into two disjoint, exhaustive cases (that person in, or out); disjoint cases are combined by addition, never multiplication.
Why can we write only the top falling factors, e.g. , instead of full ?
Those factors are , since the tail of cancels; writing the full factorial just wastes effort computing digits that immediately vanish.
Why do the binomial coefficients in turn out to be exactly ?
Expanding the product means choosing, from each of the factors, either or ; the number of ways to pick from exactly of the factors is , which becomes the coefficient of — see Binomial Theorem.
Why must the items be distinct for the combination formula to hold?
The division by assumes all internal arrangements of a chosen group are genuinely different; if two items are identical, some "arrangements" coincide and dividing by the full removes too much.
Why is largest in the middle of a row rather than at an end?
There are far more ways to pick a balanced subset than a nearly-empty or nearly-full one — extremes are pinned to (all-in or all-out), while middle sizes have vast freedom, so the count bulges centrally.

Edge cases

Boundary inputs where the formula must still behave. Test that you know the value and why.

What is , and why?
It is — there is exactly one way to choose all items (take everyone), and the formula gives using .
What is ?
— from an empty set there is exactly one subset, the empty set itself, and .
What is when ?
— you cannot select more items than the set contains, so no such subset exists; the value is genuinely zero, not undefined.
What is , and what does it represent?
— the two most extreme choices, "pick none" and "pick all", each achievable in exactly one way; they're the mirror ends of row 5.
Is obvious from the counting meaning?
Yes — choosing exactly one item from distinct items gives possibilities, one per item, with no ordering to worry about, and the formula confirms .
Does Pascal's rule still work at the edges of a row, like getting the leading ?
Yes if we treat off-triangle entries as : , so the border of 's emerges naturally from the addition law.
What does become if is negative?
We commit to the counting convention for every — a subset cannot contain a negative number of elements, so no such selection exists and its count is zero; this choice is what keeps Pascal's rule and identities like the row-sum valid at the boundaries.
Recall One-line summary of every trap

The traps all reduce to three questions: Does order matter? (permutation vs combination), Did I keep the and treat ? (formula boundaries), and Are my cases disjoint? (when to add vs multiply). Keep those three straight and no trap can catch you.

Connections