Member Login:


Pascal's Triangle

Document Reference: TN200906005 - Rev: 4.14 - Last Update: 11-04-2014 11:34 GMT - Downloaded: 19-Mar-2024 04:56 GMT

The Pascal's Triangle (aka Chinese Triangle) was named after French mathematician, physicist, inventor, writer and religious philosopher Blaise Pascal (1623-62).

Animated Pascal Triangle Demonstration

The number at the top row (the point) of a Pascal's Triangle is 1.

More numbers are placed in rows to form a triangular pattern.

The numbers at the start and at the end of each row are all 1.

Each other number inside the triangle is the sum of the two numbers above it.

Start with 0 when refering to rows from the top vertex to the base and start with 0 when refering to the numbers (cells or columns) in each row from left to right.

Symmetrical

Dividing the Pascal's Triangle from the top vertex to the base with a line of symmetry creates two right angled triangles. The numbers (nodes) on the left triangle have symmetrical matching numbers (nodes) on the right triangle.

Possible Grid Paths

The count of possible grid paths from the top node to a given node corresponds to the value of that given node. As illustrated in the image below, there are four different possible ways from the top node to the node with the value of 4.

Possible Grid Paths in a Pascals Triangle.

Calculating Individual Rows

This is a simple algorithm to calculate all individual cell values for a given row. Remember that we refer to the top row as 0 (n = 0) and we refer to the first cell of a row also as 0 (k = 0). We also know that each row starts with the number 1, e.g. the value of the first cell within a row equals 1.

Formula

( row (n) )        First row and first (and only) cell =( 0 )=1        First cell within a row (n) =(n)=1
cell (k) 00
Subsequent cell values=(n)=(n)×n + 1 - k
kk - 1 k

Calculating Individual Cell Values

This is a simple algorithm to calculate all individual cell values for a given row.

Formula

(n)=n!
kk!(n - k)!

Worked Examples

Find the value of the fourth number (cell (k) = 3) in the fifth row (row (n) = 4).

( 4 )= 4! = 4! = 4 × 3 × 2 × 1 = 4 × 3 × 2 × 1= 4
3 3!(4 - 3)! 3!1! 3 × 2 × 1 × 1 3 × 2 × 1 × 1

Find the value of the third number (cell (k) = 2) in the fifth row (row (n) = 4).

( 4 )= 4! = 4! = 4 × 3 × 2 × 1 = 4 × 3 × 2 × 1= 12 = 6
2 2!(4 - 2)! 2!2! 2 × 1 × 2 × 1 2 × 1 × 2 × 1 2

Find the value of the second number (cell (k) = 1) in the sixth row (row (n) = 5).

( 5 )= 5! = 5! = 5 × 4 × 3 × 2 × 1 = 5 × 4 × 3 × 2 × 1= 5
1 1!(5 - 1)! 1!4! 1 × 4 × 3 × 2 × 1 1 × 4 × 3 × 2 × 1

This website uses cookies to give you the best experience on our website, to personalise content and to analyse our website traffic. Some cookies may have been set already. To find out more about our use of cookies you can visit our Privacy Statement. By browsing this website, you agree to our use of cookies.

Hide this message