Can you please describe how to derive a formula for first n members of $$ S = 1\cdot 2 + 2\cdot 3 + 3\cdot 4 +\cdots +n(n+1)\mbox{?} $$ Thank you
-
Can you calculate the first few summation results? – Joffan Jan 10 '15 at 23:55
-
if anyone is curious, https://oeis.org/A007290 – JMoravitz Jan 11 '15 at 00:08
4 Answers
Hint:
$$S = \sum\limits_{k=1}^{n}k(k+1)=\sum\limits_{k=1}^{n}(k^2+k) = \sum\limits_{k=1}^{n}k^2+\sum\limits_{k=1}^{n}k\text{.}$$ Do you know how to calculate the two sums $\displaystyle\sum\limits_{k=1}^{n}k^2$ and $\displaystyle\sum\limits_{k=1}^{n}k$?

- 19,519
Here's one method:
Guess that it's a polynomial.
If you want to figure out what degree it is, compute forward differences.
That is, if $S(n)$ is the sum of the first $n$ terms, compute $D_1(n) = S(n) - S(n+1)$ for a few different $n$. Then go forward again, and compute $D_2(n) = D_1(n) - D_1(n+1)$ for a few $n$, and so on. Eventually, you might notice that the terms become constant. If this happens on $D_k$, then this suggests you have a degree $k$ polynomial.
If you don't want to figure it out, then it's a degree $3$ polynomial.
Find $4$ terms and fit a degree $3$ polynomial to those terms.

- 91,687
-
A slight variation: Set $S(n)+(n+1)(n+2)=S(n+1)$, multiply out and simplify each side. Then equate coefficients of like powers of $n$ – DJohnM Jan 11 '15 at 00:14