1. Calculate a single entry using the recurrence
Problem
Find
(24) using the recurrence relation.
(24)=(13)+(23) Apply the recurrence relation to break down (24) into entries from row 3.
(13)=(02)+(12) Apply the recurrence again to decompose (13).
(02)=1,(12)=(01)+(11)=1+1=2 The left edge (02)=1; both (01) and (11) are at the triangle's top, so they equal 1.
(13)=1+2=3 Substitute back to compute (13).
(23)=(12)+(22)=2+1=3 Compute (23) using (12)=2 from above and (22)=1 at the right edge.
(24)=3+3=6 Combine the two row-3 values to get the final answer.
Answer: (24)=6
This example shows how the recurrence relation lets you compute any binomial coefficient by working backward through Pascal's Triangle until you reach the edges, where all values are 1. This method works for any entry without needing factorials or complicated arithmetic.
2. Build an entire row using the recurrence
Problem
Given row 4 of Pascal's Triangle is 1, 4, 6, 4, 1, use the recurrence relation to build row 5.
(05)=1 The leftmost entry of every row is always 1 by definition.
(15)=(04)+(14)=1+4=5 Add the first two entries from row 4 to get the second entry of row 5.
(25)=(14)+(24)=4+6=10 Apply the recurrence by shifting one position right; add the next two adjacent entries from row 4.
(35)=(24)+(34)=6+4=10 Continue the pattern; note that by symmetry, (35) should equal (25), which it does.
(45)=(34)+(44)=4+1=5 Compute the second-to-last entry using the last two entries of row 4.
Row 5: 1,5,10,10,5,1 The complete row 5, with the rightmost entry always equal to 1.
Answer: Row 5: 1,5,10,10,5,1
Building row by row demonstrates the power of the recurrence relation: each entry depends only on two entries from the previous row, so you can construct Pascal's Triangle quickly without computing any binomial coefficients directly. This systematic approach is why the recurrence relation is so practical.
3. Solve a combination problem using Pascal's Triangle
Problem
A study group has 5 members and needs to choose 2 people to present first. How many different teams of 2 can be formed? Use the recurrence relation to find
(25).
(25)=(14)+(24) Set up the recurrence; we need to find (14) and (24) from row 4.
(14)=(03)+(13)=1+3=4 Compute (14); the left edge is always 1, and (13)=3 is a standard row-3 entry.
(24)=(13)+(23)=3+3=6 Compute (24) using the row-3 entries (13)=3 and (23)=3.
(25)=4+6=10 Add the two row-4 values to get the final answer.
Answer: (25)=10
This problem asks for (25), which counts the number of distinct ways to choose 2 people from a group of 5—exactly what binomial coefficients represent. The recurrence relation breaks this into simpler row-4 calculations, which break into row-3 calculations, eventually reaching base cases where the answer is obvious. There are 10 different possible presenting teams.