We also did a little more stuff with Pascal's Triangle. If we left-justify all the numbers, we get a staircase instead of a pyramid:
1
1 1
1 2 1
1 3 3 1
1 4 6 4 1
1 5 10 10 5 1
If we sum the numbers in each row, we get doubles:
Sum
1 1
1 1 2
1 2 1 4
1 3 3 1 8
1 4 6 4 1 16
1 5 10 10 5 1 32
If we sum the numbers on each finite diagonal, we get the Fibonacci numbers. I think this is really cool.
Sum
1 1
1 1 1
2 1 2 1
3 1 3 3 1
5 1 4 6 4 1
8 1 5 10 10 5 1
No comments:
Post a Comment