I have this mathematical induction problem $$\sum_{i=0}^n j!j = (n + 1)! - 1$$
I want to show that
$$\sum_{i=0}^{k+1} j!j +((k+1)!(k+1)) = (k + 2)! - 1$$
My steps after this line would be to sub the LHS with the original formula:
$$(k+1)!-1 + ((k+1)!(k+1))$$
And after factorizing out $(k+1)!$, im left with:
$$(k+1)!((k+1) + (-1)) = (k+1)!(k)$$
Where did I go wrong? Can I not factor out $(k+1)!$ this way?
You want to show that
$$ \sum_{i = 0}^k i!i + (k + 1)!(k + 1) = (k + 2)! - 1. $$
Notice the limits on the summation.
This gives you
$$ (k + 1)! - 1 + (k + 1)!(k + 1) = (k + 1)!(1 + (k + 1)) - 1. $$
Can you spot where you made the error?
Edit:
Perhaps it will help to let $a = (k + 1)!$. Then you have
$$ \begin{align*} a - 1 + a(k + 1) &= a(1) - 1 + a(k + 1) \\ &= a(1) + a(k + 1) - 1 \\ &= a(1 + (k + 1)) - 1 \\ \end{align*} $$
Notice that the third term does not have an "$a$" in front of it, so we leave it alone when factoring out $a$.