Need the coefficients of without multiplying the whole thing out? Pascal's triangle generates them with one local rule: each interior entry is the sum of the two entries directly above it, and the edges are all . Counting the top as row , row holds the coefficients of .
When to use this method
Reach for the triangle when you want binomial coefficients, a quick binomial expansion, simple combination counts, or a check on an expansion you got another way. It is fastest for small to moderate , where building rows by hand beats computing each separately. The first few rows:
The steps
- Start with 1. Place a single at the top.
- Keep 1s on the edges. Every new row begins and ends with .
- Add the two numbers above. Each interior entry is the sum of its two upper neighbors.
- Read the pattern. With the top as row , row gives the coefficients for .
For example, in row the middle comes from , and the beside it from — so each row is built straight from the row before it, no separate formula needed.
Why a row equals the binomial coefficients
Row can also be written with combinations:
where counts the ways to choose objects from . That is why row ,
gives
and why the triangle ties algebra to counting.
The whole procedure on one example
Expand . With the top as row , row is
Match those coefficients with descending powers of and ascending powers of :
The triangle supplies the coefficients, but you still place the powers in order: the exponent of falls from to while the exponent of rises from to .
Where each step tends to stall, and how to check
Step 3 (adding above): only the two entries directly above a position count, never numbers off to the side. Step 4 (row numbering): if a source starts rows at instead of , the coefficient row for is labeled differently, so fix your convention first. Placing powers: the triangle alone is not the full expansion — write the powers correctly too.
Two properties give you fast self-checks. Each row is symmetric, since , so row reads the same both directions. And the row sum is :
If your row does not add to , something went wrong.
Build row from row , then use it to expand — a clean way to drill both halves of the skill: generating the coefficients and placing the powers. In school math, Pascal's triangle usually appears right before or alongside the binomial theorem, and it stays useful as a quick coefficient check long after.
Frequently Asked Questions
- What is Pascal's triangle?
- Pascal's triangle is a triangular arrangement of numbers where each interior entry is the sum of the two entries directly above it. The outside edges are all $1$.
- How does Pascal's triangle connect to binomial expansion?
- If you count the top as row $0$, then the entries in row $n$ are the coefficients in the expansion of $(a+b)^n$.
- Why do the rows look symmetric?
- They are symmetric because the binomial coefficients satisfy $\binom{n}{k} = \binom{n}{n-k}$, so the numbers match from left to right.
Need help with a problem?
Upload your question and get a verified, step-by-step solution in seconds.
Open GPAI Solver →