How Pascal's Triangle Is Constructed

You might also like

Download as pdf or txt
Download as pdf or txt
You are on page 1of 3

How Pascal's Triangle is Constructed

At the tip of Pascal's Triangle is the number 1, which makes up the zeroth row. The first row (1 & 1) contains two 1's, both formed by adding the two numbers above them to the left and the right, in this case 1 and 0 (all numbers outside the Triangle are 0's). Do the same to create the 2nd row: 0+1=1; 1+1=2; 1+0=1. And the third: 0+1=1; 1+2=3; 2+1=3; 1+0=1. In this way, the rows of the triangle go on infinitly. A number in the triangle can also be found by nCr (n Choose r) where n is the number of the row and r is the element in that row. For example, in row 3, 1 is the zeroth element, 3 is element number 1, the next three is the 2nd element, and the last 1 is the 3rd element. The formula for nCr is: n! -------r!(n-r)! ! means factorial, or the preceeding number multiplied by all the positive integers that are smaller than the number. 5! = 5 4 3 2 1 = 120.

The Sums of the Rows


The sum of the numbers in any row is equal to 2 to the nth power or 2n, when n is the number of the row. For example:
20 = 1 21 = 1+1 = 2 22 = 1+2+1 = 4 23 = 1+3+3+1 = 8

24 = 1+4+6+4+1 = 16

Prime Numbers
If the 1 element in a row is a prime number (remember, the 0th element of every row is 1), all the numbers in that row (excluding the 1's) are divisible by it. For example, in row 7 (1 7 21 35 35 21 7 1) 7, 21, and 35 are all divisible by 7.
st

Hockey Stick Pattern


If a diagonal of numbers of any length is selected starting at any of the 1's bordering the sides of the triangle and ending on any number inside the triangle on that diagonal, the sum of the numbers inside the selection is equal to the number below the end of the selection that is not on the same diagonal itself. If you don't understand that, look at the drawing. 1+6+21+56 = 84 1+7+28+84+210+462+924 = 1716 1+12 = 13

Magic 11's
If a row is made into a single number by using each element as a digit of the number (carrying over when an element itself has more than one digit), the number is equal to 11 to the nth power or 11n when n is the number of the row the multi-digit number was taken from.
Row # Formula = Multi-Digit number Actual Row 0 Row 0 11 = 1 1 1 Row 1 11 = 11 11 2 Row 2 11 = 121 121 3 Row 3 11 = 1331 1331 4 Row 4 11 = 14641 14641 5 Row 5 11 = 161051 1 5 10 10 5 1 6 Row 6 11 = 1771561 1 6 15 20 15 6 1 7 Row 7 11 = 19487171 1 7 21 35 35 21 7 1 8 Row 8 11 = 214358881 1 8 28 56 70 56 28 8 1

You might also like