Visual walkthrough — Pascal's triangle — combinatorial interpretation
We build the whole thing from the idea of "choosing some objects from a pile." Nothing else is assumed.
Step 1 — What is a "choice", as a picture?
WHAT. Suppose we have distinct objects — say numbered balls . A ==selection of size == means we pick exactly of them and ignore the rest. Order does not matter: grabbing balls is the same handful as .
WHY start here. Before we can talk about "the number in the triangle," we must nail down what the number counts. The triangle's entry in row , position is defined as: Here is read " choose " — one symbol standing for a count of handfuls. See Combinations and Permutations for the ordered vs unordered distinction.
PICTURE. Below: 4 balls, and all the ways to pick a handful of size 2. Each red box is one valid handful. Count them — there are 6. That is exactly .

Step 2 — The one trick: pick a "special" object
WHAT. Take our objects and secretly paint one of them red — call it object (the last one). Now every possible handful of size falls into exactly one of two camps:
- Camp A: the handful contains the red object.
- Camp B: the handful does not contain the red object.
WHY do this. Counting all handfuls at once is hard. But a single yes/no question — "is the red ball in your hand?" — splits every handful into two groups that never overlap and never leave anyone out. That is the whole engine of the proof: a clean either/or split (see Addition and Multiplication Principles).
PICTURE. The same collection of handfuls from Step 1, now sorted: red-containing handfuls on the left, red-free handfuls on the right. Notice the red ball glowing in every left-hand handful and absent from every right-hand one.

Step 3 — Count Camp A (the red ball is IN)
WHAT. In Camp A the red object is already sitting in your hand. So you only need to choose the remaining objects, and they must come from the other objects (everything except the red one).
WHY and . One slot in your handful is used up by the red ball, so slots remain to fill. And you can never re-pick the red ball, so you are choosing from the non-red objects only.
PICTURE. The red ball is locked into the hand (greyed frame). The choice that remains is "pick from the black balls" — that count is .

Step 4 — Count Camp B (the red ball is OUT)
WHAT. In Camp B the red object is banished. All objects of your handful must come from the black objects.
WHY and . Nothing is pre-filled this time, so all slots are still open. But the red ball is forbidden, so again you draw from only objects.
PICTURE. Red ball crossed out and pushed aside; the entire handful is chosen from the black balls. That count is .

Step 5 — Add the camps: Pascal's rule appears
WHAT. Step 2 said the total equals Camp A plus Camp B. Steps 3 and 4 named those two counts. Substitute them in.
WHY we may add. Because the two camps are disjoint and exhaustive (Step 2), the Addition Principle lets us simply add the two counts to recover the total.
PICTURE. The two sorted piles from Step 2 merge back into the full set of handfuls — and their sizes, and , are exactly the two entries sitting above in the triangle.

Step 6 — The edge cases (never leave the reader stranded)
WHAT. The rule must still make sense at the rim of the triangle, where a "parent" appears to be missing.
WHY it matters. The formula has terms like or at the edges. We must show these behave.
PICTURE. The left and right edges of the triangle, all s, each shown as "there is exactly one empty-handful and exactly one grab-everything handful."

The convention that makes everything consistent:
- (empty handful): there is exactly one way to choose nothing — take no objects. So the left edge is all s.
- (grab everything): exactly one way to take all . So the right edge is all s.
- or (impossible): you cannot pick a negative number of objects, nor more objects than exist — zero ways. These "phantom parents" contribute , which is why an edge entry equals just its one real parent:
- (empty pile): the whole triangle starts at — there is one way to choose nothing from nothing. This is the single apex.
The one-picture summary
Here is the entire argument in a single frame: one handful, one yes/no question about the red object, two piles, one sum.

Recall Feynman retelling — say it to a friend
Imagine a bag of numbered marbles and you want every possible handful of a fixed size. Paint one marble red. Now sort your handfuls with a single question: "Is the red marble in your hand?" If yes, the red marble already fills one spot, so the rest of the handful is just "choose the remaining spots from the ordinary marbles" — that's the entry one step up and to the left. If no, the red marble is off-limits, so the whole handful comes from the ordinary marbles — that's the entry one step up and to the right. Every handful lands in exactly one pile, none is counted twice, none is missed. So the total number of handfuls is just those two numbers added together. That is Pascal's rule: each triangle entry is the sum of the two above it. At the very edges one of the two piles is empty (you can't put a marble somewhere impossible), so the entry equals its single real neighbour — which is why the sides are all s.
Recall
Recall
Why can we add Camp A and Camp B counts? ::: They are mutually exclusive and exhaustive, so the Addition Principle applies. In Camp A (red object IN), how many more objects, from how many? ::: more from the other objects → . In Camp B (red object OUT), how many objects, from how many? ::: All from the non-red objects → . What is the "invisible parent" of an edge entry? ::: An impossible choice, or , equal to . Why is ? ::: There is exactly one way to choose nothing — the empty handful.
Connections
- 3.3.12 Pascal's triangle — combinatorial interpretation (Hinglish) — the parent topic.
- Addition and Multiplication Principles — the "either/or → add" move powering Step 5.
- Combinations and Permutations — what counts.
- Factorials — the closed-form behind these counts.
- Binomial Theorem — the same coefficients as expansion coefficients.
- Hockey Stick Identity — another visual diagonal pattern using this same rule.