What Is Pascal's Triangle?

Pascal’s Triangle is an amazing tool, especially when you need to calculate expressions of the form (a + b)n. There are two ways to represent Pascal’s Triangle: Through binomial coefficients or through finding the next row by adding together the neighbors of the row above.

Theory

Method 1

Pascal’s Triangle is built up of the binomial coefficients (n k ), where n is the row and k is the place in the row.

You need to remember that Pascal’s Triangle starts with both a row and place number of 0. When you insert the numbers for n and k into the binomial coefficients, Pascal’s Triangle is formed. It looks like this:

Row number 0 to nummer 4 of Pascal’s Triangle, written with binomial coefficients

Using this method makes it easy to find the exact coefficient you need.

Note! In general, you have that

(n 0 ) = 1 = (n n) (n 1 ) = n = ( n n 1)

Be sure to implicitly understand that this is correct!

Example 1

Find the numbers in row number 3 in Pascal’s Triangle

Looking at row number 3 means that n = 3 and k is 0, 1, 2 and 3. That makes the numbers in row number 3 as follows:

Row number 3 of Pascal’s Triangle

If you calculate the values of the binomial coefficients, you get this triangle:

Row number 0 to number 4 of Pascal’ triangle, written with numbers

Note! Every row of Pascal’s Triangle starts and ends with 1.

But if you can’t find or use the binomial coefficients, what should you do? There is a very simple method you can use if you already know what’s in the row above the one you’re trying to determine. It goes like this:

Theory

Method 2

Add together two numbers that are next to each other in the row. Take the result and place it one row down, in-between the two numbers you just added.

Example 2

Write down the first four rows of Pascal’s Triangle by adding together row entries

The first row

has one entry and is known as row number 0. The entry is 1.

The second row

has two entries and is called row number 1. Both entries are 1, because all rows in Pascal’s Triangle start and end with 1.

The third row

has three entries and is known as row number 2. Now it pays off to have written down the first two rows, because you’re going to find the third row through Method 2. You know the first and last entries have to be 1, so the only entry you need to fill is the one in the middle.

Row number 0 to number 2 of Pascal’s Triangle

Here you can see that the middle entry of the third row is 1 + 1 = 2.

The fourth row

has four entries and is called row number 3. The first and last entry has to be 1, so the entries you need to find are the two in the middle of the row. This is what comes out:

Row number 0 to number 3 of Pascal’s Triangle

Here you can see that 1 + 2 = 3 and that 2 + 1 = 3, which is how you get the two middle entries on the fourth row (row number 3).

You can always add a row to Pascal’s Triangle by using one of the methods outlined above. But if you need to know a row far down the triangle it is easiest to use the binomial coefficient (n k ), where n is the row and k is the place in the row. Of course you can use Method 2 as well, but if you want row number 30 it’ll take a very long time to figure it out.

Among other things, Pascal’s Triangle is used to find the number of combinations and calculations of the form (a + b)n (known as Newton’s binomial theorem).

Example 3

The figure below shows a part of Pascal’s Triangle.

Three rows of Pascal’s Triangle. The symbols 21, x, y, 2x and 126 are shown.

From what you can see in the figure, find the values of x and y.

You know that the sum of two neighbors is equal to the number between them on the row below. From this you can find two equations with two unknowns:

21 + x = y (1) y + 2x = 126 (2)

Solve (1) for x:

x = y 21 (3)

Solve (2) for y and insert (3):

y + 2x = 126 y = 126 2x = 126 2(y 21) = 126 2y + 42 3y = 168 | ÷ 3 y = 56

Finally, you find x by inserting for y in (3):

x = 56 21 = 35

This means the missing numbers in Pascal’s Triangle are 35 and 56.

Example 4

Here you’ll see how to use the binomial theorem to calculate expressions of the form (a + b)n for n = 0, 1, 2, 3, 4:

(a + b)0 = 1 (a + b)1 = 1 a + 1 b (a + b)2 = 1 a2 + 2 ab + 1 b2 (a + b)3 = 1 a3 + 3 a2b + 3 ab2 + 1 b3 (a + b)4 = 1 a4 + 4 a3b + 6 a2b2 + 4 ab3 + 1 b4

(a + b)0 = 1 (a + b)1 = 1 a + 1 b (a + b)2 = 1 a2 + 2 ab + 1 b2 (a + b)3 = 1 a3 + 3 a2b + 3 ab2 + 1 b3 (a + b)4 = 1 a4 + 4 a3b + 6 a2b2 + 4 ab3 + 1 b4

You can see that the coefficients are the same as the first four rows of Pascal’s Triangle.

Example 5

Calculate (2x + 1)4

You could find this by multiplying out all the parentheses, but why bother when you could just use Pascal’s Triangle like we showed in Example 4. The first thing to check is the exponent, which is 4. That tells you that row number 4 in Pascal’s Triangle has the coefficients you need (remember that the first row is row number 0). This gives these coefficients:

Row number 4 of Pascal’s Triangle, written with binomial coefficients

Finding the binomial coefficients gives you:

Row number 4 of Pascal’s Triangle, written with numbers

Next, you write out the multiplications of the two terms in (2x + 1)4. The method is as follows:

  • The parentheses consist of two terms, 2x and 1. These are being raised to a power by an exponent.

  • The exponent of the first term, 2x, needs to start with the exponent of the parentheses, which in this case is 4, and decrease to 0 term by term.

  • The exponent of the second term, 1, needs to start at 0 and increase to the exponent of the parenthesis, 4, term by term.

That looks like this:

(2x)4 10 = 16x4 (2x)3 11 = 8x3 (2x)2 12 = 4x2 (2x)1 13 = 2x (2x)0 14 = 1

Now you can put the five coefficients in front of each of the five terms. That gives you this:

(2x + 1)4 = 1 16x4 + 4 8x3 + 6 4x2 + 4 2x + 1 1 = 16x4 + 32x3 + 24x2 + 8x + 1

(2x + 1)4 = 1 16x4 + 4 8x3 + 6 4x2 + 4 2x + 1 1 = 16x4 + 32x3 + 24x2 + 8x + 1

When you get comfortable with the method, you’ll just execute the final calculation. Everything that comes before is just lines of reasoning going on in your head. This is much faster than actually calculating the contents of the parentheses the old-fashioned way, so it’s smart to get used to using Pascal’s Triangle!

Want to know more?Sign UpIt's free!