I have a problem.I just read first combinatorics textbook and I found the identity $1\cdot 2+2\cdot 3+3\cdot 4+\dots +n(n+1)=\frac{n(n+1)(n+2)}{3}$. I can prove this by induction,but the problem is from combinatorics textbook and I have no idea how to begin the proof. How can I prove it by combinatorics argument?
-
2Induction is one of the many techniques used to prove combinatorial statements. I'm not sure that you should rule it out. – John Hughes Sep 06 '16 at 11:41
-
3In combinatorial form this says $\sum_{k=1}^{n}{}^{k+1}C_2={}^{n+2}C_3$, which might help. – Paul Sep 06 '16 at 11:48
-
Related: Evaluate $\sum\limits_{k=1}^n k^2$ and $\sum\limits_{k=1}^n k(k+1)$ combinatorially – Martin Sleziak May 22 '18 at 11:03
2 Answers
Note that RHS is $$2\binom{n+2}3$$
Cancel this $2$ and put it as a denominator on each term of the LHS and you get
$$\sum_{k=2}^{n+1}\binom k2=\binom{n+2}3$$
RHS: How many subset of $3$ elements has the set $\{1,\ldots,n+2\}$?
LHS: For each $k$, how many subsets of $3$ elemets whose maximum is $k+1$ has the set $\{1,\ldots,k+1\}$?

- 65,084
On the right side, you have the number of ways of selecting three items without replacement from a set of $n+2$ distinct items, multiplied by $2$. For simplicity, I'll assume there are $n$ items first, then I'll up the index later.
Now, suppose you certainly select the first item. The number of ways of choosing the rest are $\frac{(n-1)(n-2)}{2}$. Otherwise, you don't select the first item but rather the second one, and here the number of possibilities are $\frac{(n-3)(n-2)}{2}$. Repeating, you can finally select the third item from last, which gives $\frac{1\cdot 2}{2}$.These exhaust all the cases, so you have the equation: $$ \binom{n}{3} = \frac{(n-1)(n-2)}{2} + \frac{(n-3)(n-2)}{2} + \ldots + \frac{1\cdot 2}{2}. $$
Multiply by two and you have your formula: $$ \frac{n(n-1)(n-2)}{3}= {(n-1)(n-2)} + {(n-3)(n-2)} + \ldots + {1\cdot 2} $$
Now, just put $n+2$ in place of $n$ for:$$ \frac{n(n+1)(n+2)}{3}= {(n+1)(n)} + {(n-1)(n)} + \ldots + {1\cdot 2} $$

- 76,105
-
-
Welcome. To ask any doubts, and to clear any fault above. – Sarvesh Ravichandran Iyer Sep 06 '16 at 12:00