Pascal Triangle

You might be knowing the expansion of  (a + b)2. Expansion of   (a + b)2 = a2 + 2ab + b2

Similarly, (a + b)3 = a3 + 3a2b + 3ab2 + b3.
If someone asks you to find the expansion of (a + b)10 or (a + b)15?

But expansions involving such large numbers are not difficult to write as you might be thinking. You can easily expand these types of expressions, if you know Pascal’s triangle.

CodingHero - Pascal Triangle

Pascal’s triangle is a triangular array of the binomial coefficients. It is named after the French mathematician Blaise Pascal, although other mathematicians studied it centuries before him in India, Persia (present day Iran) and China.

Now, you might be thinking how to write or remember this triangle. You can write Pascal’s by using these steps:

  • At the top centre of your paper write the number “1”.
  • On the next row write two 1’s, forming a triangle.
  • On each subsequent row start and end with 1’s and compute each interior term by summing the two numbers above it.

CodingHero - Pascal Triangle SzngLagFd8k8XHUcHFQHJRwUXF71xcLt5kkqQ9fbeNNShHpHz7Vtfgg BADEEdzpDI58XINclYGIJEjkMteeCXOwcmdxqPEtoSP0sgtHh87XmXmDBT BblN0V j7tm8M4esT8FiG

Now, I will tell you how to use Pascal’s triangle.

To find (a + b)3, check the numbers in row whose second number is 3.

In this row, the numbers are 1, 3, 3 and 1, therefore, (a + b)3 = a3 + 3a2b + 3ab2 + b3
To find (a + b)5, check the numbers in row whose second number is 5.

Numbers in this row are 1, 5, 10, 10, 5, 1, therefore, (a + b)5 = a5 + 5a4b + 10a3b2 + 10a2b3 + 5ab4 + b5

If it is (a – b)5, then + and – will come alternatively, (a – b)5 = a5 – 5a4b + 10a3b2 – 10a2b3 + 5ab4 – b5
Isn’t it so simple to expand any binomial expansion with any power? Can you now tell what is the expansion of (a + b)10?

1 thought on “Pascal Triangle”

Leave a Comment