Most recent change of PascalsTriangle

Edit made on February 26, 2009 by GuestEditor at 08:41:38

Deleted text in red / Inserted text in green

WW
HEADERS_END
Each number in Pascal's Triangle is the sum of the number directly above it and the number to the immediate left of that number. The start of Pascal's Triangle is shown below, where the top row, containing just one 1, is row 0.

| 1 |
| 1 | 1 |
| 1 | 2 | 1 |
| 1 | 3 | 3 | 1 |
| 1 | 4 | 6 | 4 | 1 |
| 1 | 5 | 10 | 10 | 5 | 1 |
| 1 | 6 | 15 | 20 | 15 | 6 | 1 |

Pascal's Triangle is very important for binomial expansions.

The notations used for a number in Pascal's Triangle are:

* EQN:\left(n\\r\right)

* !/ Please insert correct nCr notation here !/
* EQN:_^nC_r

where EQN:n is the row number and EQN:r is the EQN:r^{th} term in the EQN:n^{th} row
e.g. EQN:\left(4\\3\right)=6

The formula for finding any number in Pascal's Triangle is:

* EQN:\left(n\\r\right)=\frac{n!}{r!(n-r)!}

where EQN:n! is n factorial

----

See http://mathworld.wolfram.com/PascalsTriangle.html for more information.