3

How would I prove

$$ \sum_{i=1}^n i(i!) = (n+1)! -1 $$

The base case is n = 1, which is trivial, and using the inductive hypothesis, I get to

$$ \sum_{i=1}^{n+1} i(i!) = \sum_{i=1}^n i(i!) + (n+1)(n+1)! $$ which equals $$ (n + 1)! - 1 + (n + 1)(n + 1)! $$ I know it has to end up equaling $$ (k + 2)(k + 1)! - 1\\ $$

but I don't know how to make the jump between the two steps. Any help would be appreciated.

1 Answers1

4

I think you can use distributive law.

\begin{align} (n+1)! - 1 + (n + 1)(n + 1)! &= (n+1)! + (n+1)(n+1)! - 1 \\ &= (n+1)! (1 + (n + 1)) - 1 \\ &= (n+1)!(n+2) -1 \end{align}

matt
  • 410