How do you prove this using induction? $$\sum_{k=1}^{n} k(k!) = (n+1)! - 1$$ for all positive integers n
Base Case: $1(1!) = 1$ and $(2!) - 1 = 1$, so this works for$ n = 1$.
How do I show the $n + 1$ case?
How do you prove this using induction? $$\sum_{k=1}^{n} k(k!) = (n+1)! - 1$$ for all positive integers n
Base Case: $1(1!) = 1$ and $(2!) - 1 = 1$, so this works for$ n = 1$.
How do I show the $n + 1$ case?
$$S=\sum_{k=0}^{n} k ~ k!= \sum_{k=0}^{n} [(k+1) -1]~ k!= \sum_{k=0}^{n}[(k+1)!- k!]=(n+1)!-1.$$ In the last step we have done telescoping summation.