Read this lesson as text

Pascal's Identity

Combinatorics · Axiom Academy

Understanding the fundamental relationship that builds Pascal's Triangle 1. Pascal's Identity Statement Pascal's Identity states that any binomial coefficient can be expressed as the sum of two binomial coefficients from the previous row: This says: "The number of ways to choose k items from n items equals the sum of choosing k items from n-1 items (when we include a specific item) and choosing k-1 items from n-1 items (when we exclude that specific item)." 2. Algebraic Proof Using Factorials We can prove Pascal's Identity by expanding both sides using the factorial formula for binomial coefficients: 3. Combinatorial Proof: The Committee Example The most intuitive proof comes from thinking about selecting a committee. Suppose we need to choose k people from a group of n people. Key Insight: Pick one specific person, say Alice. Every k-person committee either includes Alice or it doesn't. Pascal's Identity is the rule that generates Pascal's Triangle. Each entry is the sum of the two entries above it: The triangle starts with 1 at the top. Each row n contains the binomial coefficients C(n,0), C(n,1), ..., C(n,n). The edges are always 1 (since C(n,0) = C(n,n) = 1), and every interior entry is computed using Pascal's Identity. 5. Applications and Efficiency Pascal's Identity enables efficient computation of binomial coefficients without using factorials, which can overflow for large numbers.

This is the written version of the interactive lesson above. See the full Combinatorics course.