2
$\begingroup$

I will skip the Base Case step.

This is the questions.

Use mathematical induction to prove that$$\frac{1}{2!}+\frac{2}{3!}+\cdots+\frac{n}{(n+1)!}=1-\frac{1}{(n+1)!}$$for all integers $n\ge 1$.

This is my proof:

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

And this is where I am stuck, I don't know how to prove that: $$1-\frac{1}{(k+1)!} + \frac{k+1}{(k+2)!} = 1-\frac{1}{(k+2)!}$$

$\endgroup$
4
  • 1
    $\begingroup$ Well, how would you add fractions with different denominators? $\endgroup$ Commented Mar 11, 2016 at 6:33
  • $\begingroup$ Try multiplying the second term on the left hand side of your last equation by $\frac{k+2}{k+2}$ and use the definition of factorial. $\endgroup$
    – Troy
    Commented Mar 11, 2016 at 6:33
  • 1
    $\begingroup$ I got $$1-\frac{k+2}{(k+2)!} + \frac{k+1}{(k+2)!}$$ $\endgroup$
    – user317568
    Commented Mar 11, 2016 at 6:36
  • $\begingroup$ BTW there are probably some other posts on this site about the same sum. For example: math.stackexchange.com/questions/1382231/… $\endgroup$ Commented Mar 11, 2016 at 8:32

2 Answers 2

6
$\begingroup$

I thought it might be instructive to present a way forward that facilitates the analysis. To that end, note that we can write

$$\frac{k}{(k+1)!}=\frac{1}{k!}-\frac{1}{(k+1)!}$$

Thus, we have a telescoping sum and can write

$$\sum_{k=1}^n \frac{k}{(k+1)!}=\sum_{k=1}^n\left(\frac{1}{k!}-\frac{1}{(k+1)!}\right)=1-\frac{1}{(n+1)!}$$

where using induction on the sum as written $\sum_{k=1}^n\left(\frac{1}{k!}-\frac{1}{(k+1)!}\right)$ makes the induction proof almost trivial.

$\endgroup$
2
  • 2
    $\begingroup$ you write "that does not rely on induction" - how do you prove the statement on telescopic sums without induction? $\endgroup$
    – Steven
    Commented Mar 11, 2016 at 6:46
  • $\begingroup$ @Steven Relying on a theorem the proof of which might or might not rely on induction, is not the same as a direct proof by induction. $\endgroup$
    – Mark Viola
    Commented Jun 11, 2016 at 16:30
5
$\begingroup$

Note that $(k + 2)! =(k + 2) \cdot (k + 1)! $. You then get for your last equation $$ 1 - \frac{1}{(k + 1)!} + \frac{k + 1}{(k + 2)!} = 1 - \frac{k + 2}{(k + 2)!} + \frac{k + 1}{(k + 2)!} = 1 + \frac{1 - 2 + k - k}{(k + 2)!} = 1 - \frac{1}{(k + 2)!}$$ which proves the statement.

$\endgroup$
1
  • $\begingroup$ Ya, your method worked $\endgroup$
    – user317568
    Commented Mar 11, 2016 at 6:45

You must log in to answer this question.