4

So we learned telescoping series in class and I came across this question in my textbook and I tried to evaluate it, but I don't understand how to do it.

$$ \sum\limits_{k=1}^n\left(k \cdot k!\right) $$

According to the answers:

$$ \sum\limits_{k=1}^n\left(k \cdot k!\right) = (n+1)! - 1 $$

We learned how to simplify certain telescoping series using partial fractions but I don't have any idea on how to start this question.

1 Answers1

8

Note that $$k \cdot k! =(k+1)! - k!$$ Now telescoping should help you.

  • 3
    Indeed. These kinds of telescoping series problems will almost always become trivial if you determine a way of rewriting the summand as a difference of "similar" expressions. – obataku May 05 '13 at 04:04
  • 1
    Thank you very much! Now the question is much more simple. I completely agree with you oldrinb, finding the "right" expression is usually the most difficult part. – user2351149 May 05 '13 at 04:16
  • 3
    @user2351149 A simple way to get the right expression when you know what the answer is, is as follows. If you want to show $$\sum_{k=1}^n f(k) = S(n)$$ try to see if $f(k) = S(k+1) - S(k)$. In this case, $((n+1)!-1) - (n!-1) = n \cdot n!$. –  May 05 '13 at 04:20