Advertisement
Guest User

Untitled

a guest
Apr 23rd, 2017
285
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 5.12 KB | None | 0 0
  1. A few weeks ago, my friend Chris and I were bored in maths class (the origin of all good ideas) while we were studying the Binomial Theorem and Pascal's Triangle, and he randomly asked me, "What about Pascal's Pyramid?" That got me thinking about how the idea of Pascal's Triangle could be extended to different dimensions, and here are some really cool things we came up with.
  2.  
  3. ##Definitions
  4. First, Pascal's Element is simply a \(1\).
  5.  
  6. Then Pascal's Line:
  7.  
  8. \[ 1 \quad 1 \quad 1 \quad 1 \quad 1 \quad 1 \quad 1 \quad \dots\]
  9.  
  10. We define it this way because each term is the sum of the 1 terms in the column before it, and it gives some interesting patterns later on.
  11.  
  12. In [[wiki-pascals-triangle|Pascal's Triangle]], each term is the sum of the two terms above it.
  13.  
  14. Unfortunately, it is impossible to put a 3-dimensional tetrahedron onto here, so instead we will imagine Pascal's Tetrahedron layer by layer:
  15.  
  16. \[1 \\
  17. 1 \\ 1 \quad 1 \\
  18. 1 \\ 2 \quad 2 \\ 1 \quad 2 \quad 1 \\
  19. 1 \\ 3 \quad 3 \\ 3 \quad 6 \quad 3 \\ 1 \quad 3 \quad 3 \quad 1 \\
  20. 1 \\ 4 \quad 4 \\ 6 \quad 12 \quad 6 \\ 4 \quad 12 \quad 12 \quad 4 \\ 1 \quad 4 \quad 6 \quad 4 \quad 1 \\ \vdots \]
  21.  
  22. Imagine each layer being tilted forward and then stacked on top of one another. Here, each term is the sum of the 3 terms above it.
  23.  
  24. Now we move to the general definition for Pascal's Simplices (an \(n\)-simplex is a generalization of the idea of a triangle or tetrahedron to \(n\) dimensions):
  25.  
  26.  
  27. ##General Definition
  28.  
  29. In Pascal's \(n\)-simplex, let each element be \( \left( \begin{array}{c} d_n \\ d_{n-1} \\ d_{n-2} \\ \vdots \\ d_1 \end{array} \right) \) (read aloud as "\(d_n\) choose \(d_{n-1}\) choose \(d_{n-2}\) \(\dots\) choose \(d_1\)), where each \(d_k\) denotes the number of the \((k-1)\)-simplex where that element is found. For example, \(\displaystyle \binom{d_2}{d_1}\) is the \(d_1\)th element of the \(d_2\)th row of Pascal's triangle and is the same as the binomial coefficient "\(d_2\) choose \(d_1\)". Like Pascal's Triangle, our counting starts at 0, and for \(1 \leq k \leq (n-1)\), \(d_k\) can take any integer value \(0 \leq d_k \leq d_{k+1}\) (\(d_n\) can be any nonnegative integer). In addition, if any \(d_k < 0\), the term is 0.
  30.  
  31. Each element is the sum of the \(n\) elements in the previous (\(n-1\))-simplex; that is
  32. \( \left( \begin{array}{c} d_n \\ d_{n-1} \\ d_{n-2} \\ \vdots \\ d_1 \end{array} \right) = \left( \begin{array}{c} d_n-1 \\ d_{n-1}-1 \\ d_{n-2}-1 \\ \vdots \\ d_1-1 \end{array} \right) + \left( \begin{array}{c} d_n-1 \\ d_{n-1}-1 \\ \vdots \\ d_2-1 \\ d_1 \end{array} \right) + \left( \begin{array}{c} d_n-1 \\ \vdots \\ d_3-1 \\ d_2 \\ d_1 \end{array} \right) + \dots + \left( \begin{array}{c} d_n-1 \\ d_{n-1} \\ \vdots \\ d_2 \\ d_1 \end{array} \right) \). This is called the addition identity.
  33.  
  34. ##Example:
  35. Find the value of \( \left( \begin{array}{c} 4 \\ 3 \\ 2 \end{array} \right) \).
  36.  
  37. This is the 2nd element of the 3rd row of the 4th layer of Pascal's Tetrahedron, so looking at the tetrahedron, and remembering that counting starts at 0, we see that \( \left( \begin{array}{c} 4 \\ 3 \\ 2 \end{array} \right) = 12\).
  38.  
  39. ##Properties
  40. Now, some properties of Pascal's Simplices. You will recognize many of them from Pascal's Triangle, generalized to any dimension.
  41.  
  42. The sum of the elements in any \((n-1)\)-simplex is \((d_n)^n\). This means that the sum of the elements in the \(k\)-th row of Pascal's triangle is \(2^k\), the sum of the elements in the \(k\)-th layer of Pascal's Tetrahedron is \(3^k\), and so on. This is one reason why we defined Pascal's Line to be all \(1\)'s, so that the sum of the \(k\)-th element is \(1^k\).
  43.  
  44.  
  45. One way to see why this is true is the following:
  46. Each element in Pascal's \(n\)-Simplex has \(n\) elements "below" it. It contributes to each of those elements, so it is represented \(n\) times. Thus, the sum of each \((n-1)\)-simplex is \(n\) times more than the one "above" it. Since the sum begins at \(1\), the sums are the powers of \(n\). A different proof of this will be shown later when we look at Pascal's Simplices in relation to multinomial coefficients.
  47.  
  48. Next, we present an explicit definition for each element based on binomial coefficients. This shall be called Hobbit's Theorem.
  49.  
  50. ##**Hobbit's Theorem:**
  51. \( \left( \begin{array}{c} d_n \\ d_{n-1} \\ d_{n-2} \\ \vdots \\ d_1 \end{array} \right) = \displaystyle \prod_{k=1}^{n-1} \binom{d_{k+1}}{d_k} = \displaystyle \binom{d_n}{d_{n-1}} \binom {d_{n-1}}{d_{n-2}} \binom {d_{n-2}}{d_{n-3}} \cdots \binom {d_3}{d_2} \binom {d_2}{d_1} \)
  52.  
  53. We prove this by induction on \(d_n\).
  54. First, if \(d_n = 0\), then either
  55.  
  56. - at least 1 \(d_k\) is negative, so the entire element is 0, and at least one binomial coefficient in the product is also 0, thus Hobbit's Theorem is true.
  57. - all \(d_k\) are 0, in which case the element is 1, being the first element in Pascal's \(n\)-Simplex. The product of the binomial coefficients is also 1 because each binomial coefficient is \( \binom{0}{0} = 1\).
  58. Therefore, Hobbits theorem is true for all elements where \(d_n\) is 0.
  59.  
  60. Now, assume that Hobbit's theorem is true for all elements where \(d_n = k\).
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement