Prove that if you move straight down in Pascal's Triangle, visiting every other row, then the numbers are increasing.
Pascal's Triangle and Binomial Coefficients
0
$\begingroup$
binomial-coefficients
-
1so you want to prove $\binom{n}{k}\leq \binom{n+1}{k}$? – 2017-02-17
-
0Wouldn't it be (n+2 k+1) because it's every other row – 2017-02-17
-
0I'm not sure, I'm confused how you would even derive that. – 2017-02-17
1 Answers
2
...prove that $\frac{n!}{2(n/2)!}$ for $2 | n$ is increasing as $n$ increases? Or down starting at arbitrary $k$ ans $n$? The latter is also fairly trivial:
$\binom{n+2}{k+1} = \binom{n+1}{k} + \binom{n+1}{k+1} = \bigg(\binom{n}{k-1} + \binom{n}{k}\bigg) + \binom{n+1}{k+1} > \binom{n}{k} $
-
0Is this enough to fully prove it? – 2017-02-17
-
0Yes, so long as you have proved that $\binom{n}{k} = \binom{n-1}{k-1} + \binom{n-1}{k}$. This of course implies, more strongly, that every element of each row of Pascal's triangle is larger than every element of the previous row, which immediately proves your statement. – 2017-02-17