Binomial Coefficients and Pascal's Triangle

College Depth 67 in the knowledge graph I know this Set as goal
Unlocks 16 downstream topics
combinatorics binomial

Core Idea

Binomial coefficients C(n,k) = n!/(k!(n-k)!) count the ways to choose k items from n items. These coefficients appear as entries in Pascal's triangle and satisfy the recursive property C(n,k) = C(n-1,k-1) + C(n-1,k). They also form the coefficients in the expansion of (a+b)^n.

Explainer

You already know from combinations and selections that C(n,k) = n!/(k!(n-k)!) counts the number of ways to choose k items from n without regard to order. Binomial coefficients are exactly these counting numbers — the same formula, now given a geometric home in Pascal's triangle. Pascal's triangle arranges these values in a triangular grid: row n contains C(n,0), C(n,1), ..., C(n,n). The outermost entries are always 1 — there's exactly one way to choose nothing, and one way to choose everything — and every interior entry equals the sum of the two entries directly above it.

That addition rule has a beautiful combinatorial explanation, known as Pascal's identity: C(n,k) = C(n-1,k-1) + C(n-1,k). Imagine you have n objects and want to choose k. Pick one special object — call it "the red ball." Every size-k selection either includes the red ball or it does not. If it includes the red ball, you're choosing the remaining k-1 from the other n-1 objects: C(n-1,k-1) ways. If it excludes the red ball, you're choosing all k from the other n-1 objects: C(n-1,k) ways. These two cases are mutually exclusive and exhaustive, so their sum equals C(n,k). The triangle's rule is not just arithmetic — it encodes this logical split.

The most important application of binomial coefficients is the binomial theorem: (a+b)^n = Σ C(n,k) a^(n-k) b^k. To see why, expand (a+b)^n as the product of n copies of (a+b). Each term in the full expansion comes from picking either a or b from each factor. The coefficient of a^(n-k) b^k is exactly the number of ways to choose which k factors contribute b — which is C(n,k). The triangle's rows literally encode the expansion coefficients: row 2 gives 1, 2, 1 for (a+b)², row 3 gives 1, 3, 3, 1 for (a+b)³, and so on.

Pascal's triangle also harbors deeper patterns. The entries in each row sum to 2^n (the number of all subsets of an n-element set). The hockey stick identity — that summing a diagonal gives the entry one row below — corresponds to a counting argument about choosing from sets of growing size. These patterns are not coincidences; they each reflect a combinatorial identity provable by the same logic used for Pascal's identity. Binomial coefficients are the connective tissue between combinatorics, algebra, and probability, and recognizing them in new settings is a core skill in discrete mathematics.

Practice Questions 5 questions

Prerequisite Chain

Counting to 10Counting to 20Understanding ZeroThe Number ZeroCounting to FiveOne-to-One CorrespondenceCombining Small Groups Within 5Addition Within 10Addition Within 20Two-Digit Addition Without RegroupingTwo-Digit Addition with RegroupingAddition Within 100Repeated Addition as MultiplicationMultiplication Facts Within 100Division as Equal SharingDivision as Grouping (Measurement Division)Division: Grouping (Repeated Subtraction) ModelDivision: Fair Sharing ModelDivision as Equal SharingDivision as GroupingBasic Division FactsDivision Facts Within 100Two-Digit by One-Digit DivisionDivision with RemaindersRemainders and Quotients in DivisionDivision Word ProblemsIntroduction to Long DivisionFactors and MultiplesPrime and Composite NumbersEquivalent FractionsRelating Fractions and DecimalsDecimal Place ValueIntegers and the Number LineOpposites and Additive InversesAbsolute ValueAdding IntegersSubtracting IntegersMultiplying IntegersDividing IntegersUnit RatesProportionsPercent ConceptConverting Between Fractions, Decimals, and PercentsOperations with Rational NumbersTwo-Step EquationsSolving Multi-Step EquationsEquations with Variables on Both SidesLiteral EquationsSlope-Intercept FormPoint-Slope FormWriting Linear EquationsParallel and Perpendicular Line SlopesGraphing Linear EquationsPiecewise FunctionsStep FunctionsComposition of FunctionsInverse FunctionsRadical Functions and GraphsRational ExponentsExponential Functions and GraphsGeometric Sequences and SeriesSigma NotationExpected ValueThe Probabilistic Method in Graph TheoryProbabilistic Method in CombinatoricsPermutations and Ordered ArrangementsCombinations and Unordered SelectionsBinomial Coefficients and Pascal's Triangle

Longest path: 68 steps · 300 total prerequisite topics

Prerequisites (2)

Leads To (5)