Mathematical Induction with factorial

4.1k Views Asked by At

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?

4

There are 4 best solutions below

3
On BEST ANSWER

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$.

0
On

This is the induction step: $$(k+1)!-1+(k+1)!(k+1) = (k+1)!(1+k+1)-1 \\= (k+1)!(k+2)-1 = (k+2)!-1$$

0
On

Base case

$n = 1\\ (1!)1 = 2! - 1$

Inductive hypothesis

Suppose $\sum_{i=0}^{k} j!j = (k+1)! - 1$

We must show that when the inductive hypothesis holds

$\sum_\limits{i=0}^{k+1} j!j = (k + 2)! - 1\\ \sum_\limits{i=0}^{k} j!j + (k+1)!k \\ (k+1)!-1 + (k+1)!k $

By the inductive hypothesis

$(k+1)!(k+2)-1\\ (k + 2)! - 1$

QED

0
On

Let be $ \sum_{i=0}^{k} j! j = (k+1)! -1$ (*) your induction assumption.

So you have then $ \sum_{i=0}^{k+1} j! j = \sum_{i=0}^{k} j! j + (k+1)!(k+1) = (k+1)! -1 +(k+1)!(k+1) = (k+2)! -1$

In second equation I use (*).