Pascal Triangle Properties:
- Each number is the sum of the two numbers above it
- The numbers in each row are symmetric
- The rth number in the nth row is equal to C(n-1,r-1)
- The sum of each row is equal to 2^(n-1)
Combination Formula:
C(n,r) = n! / (r! * (n-r)!)