Overview

Pascal's triangle is a triangular arrangement of integers in which each entry (except the edges) equals the sum of the two numbers directly above it. The outer edges are all 1, and successive rows give the coefficients that appear in expansions of powers of a binomial expression. Although commonly associated with the French mathematician Blaise Pascal, versions of the triangle and its properties were recorded in a number of earlier mathematical traditions. The structure provides a compact way to display binomial coefficients and reveals many numerical patterns that appear both in elementary algebra and in combinatorics. For a basic visual and historical note, see triangular array.

Construction and combinatorial meaning

To build Pascal's triangle start with a single 1 at the top (row 0). Each later row begins and ends with 1. Any interior entry is found by adding the two entries above it: entry(n,k) = entry(n-1,k-1) + entry(n-1,k), where n is the row index and k is the position within the row (both usually starting at zero). The numbers in row n are the binomial coefficients "n choose k", written C(n,k) or (n k), and count how many ways there are to choose k elements from a set of n. This explains the triangle's direct connection to the binomial theorem: the coefficients of (a + b)^n are precisely the numbers in the nth row. More on algebraic interpretation is available at binomial coefficients and combinatorial applications at combinations.

Key properties and patterns

Pascal's triangle contains many simple but striking identities and patterns that are useful in proofs and calculations. Some of the most frequently cited properties are listed below:

  • Symmetry: Each row reads the same left-to-right and right-to-left because C(n,k) = C(n,n-k).
  • Row sums: The sum of the entries in row n equals 2^n. This follows from evaluating (1+1)^n.
  • Hockey-stick identity: A diagonal sum of consecutive entries equals a single entry farther down the triangle (useful in combinatorial proofs).
  • Shallow diagonals: Certain diagonal sums produce important sequences — for example, sums of particular diagonals give the Fibonacci numbers and triangular numbers.
  • Modular patterns: Coloring entries by parity produces fractal-like patterns (Sierpiński triangle when taken modulo 2).

Other algebraic relationships can be written in closed form using factorials: C(n,k) = n! / (k! (n-k)!), which links the triangle to permutations and probabilities. The local additive rule makes the triangle an ideal example of a simple linear recurrence with wide consequences; see also recurrence examples.

Examples and numerical illustrations

Early rows of Pascal's triangle (with row numbers starting at 0) are typically displayed as: 1 1 1 1 2 1 1 3 3 1 1 4 6 4 1 which shows directly how the coefficients for (a+b)^4 are 1, 4, 6, 4, 1. Beyond these small examples, entries grow quickly and encode many classical sequences: the second diagonal lists the natural numbers, the third diagonal gives triangular numbers, and the center entries of even rows give central binomial coefficients. The triangle also supplies quick combinatorial answers: the number of simple 5-card hands that include exactly 2 aces from a 4-ace deck can be expressed using C(4,2) times other factors; references to applied counting are available at combinatorics resources.

History, notation and applications

Versions of the triangle and tables of binomial coefficients appear in the work of mathematicians from several cultures across centuries. Chinese, Persian, and Indian mathematicians recorded triangular arrangements and numerical rules resembling the modern presentation before Pascal's systematic treatment in Europe. The name "Pascal's triangle" reflects Pascal's influential synthesis and his extensive study of its properties in the 17th century, but historical surveys emphasize earlier sources; see further reading at historical notes and mathematical surveys.

Why it matters

Pascal's triangle is a compact crossroads of algebra, combinatorics, number theory and recreational mathematics. It makes binomial expansions and probability calculations immediate, supplies identities for algebraic manipulation, and exhibits surprising geometric and fractal patterns under arithmetic reductions. Its simple generation rule makes it a staple example in teaching recursion and combinatorial reasoning. For hands-on exploration, replacing numbers by their residues modulo small integers reveals visual patterns valuable in both pedagogy and research. The triangle continues to appear across mathematics and its applications, from elementary classroom problems to connections with generating functions and algebraic identities that underpin more advanced theory.