The series is $$\frac{1}{2!} + \frac{2}{3!} + \frac{3}{4!} ... + \frac{n-1}{n!},$$ which I can write as the sum $$\sum_{i=2}^n \frac{i-1}{i!}$$ I will try to evaluate the partial sums to look for a pattern. The first partial sums I get are $\frac12, \frac56 , \frac{23}{24}$. Thus, I make the guess that the sum is equal to $\frac{n!-1}{n!}$. I have already proven the base cases through experimentation, so I work on proving the induction step. I assume that $\sum_{i=2}^n \frac{i-1}{i!}= \frac{n!-1}{n!}$, for some $n=k$ so I get $$\sum_{i=2}^k \frac{i-1}{i!}= \frac{k!-1}{k!}$$ Now I prove this holds for $n=k+1$ as well. I get $$\sum_{i=2}^{k+1} \frac{i-1}{i!}= \frac{k!-1}{k!} + \frac{k}{(k+1)!} = \frac{(k!-1)(k+1)}{(k+1)!} + \frac{k}{(k+1)!} = \frac{(k+1)!-k-1}{(k+1)!} + \frac{k}{(k+1)!} = \frac{(k+1)!-1}{(k+1)!} $$ Thus the induction step holds as well, proving my expression is indeed the sum. However, this problem was in the telescoping sums section of my mathbook, so I was wondering how you would solve this sum telescopically since these induction proofs take some time.
2026-03-26 11:16:40.1774523800
How would I evaluate this series using telescopic summation?
206 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
We have:
$$\sum_{i=2}^{n}\frac{i - 1}{i!} = \sum_{i=2}^{n}\frac{i}{i!} -\frac{1}{i!} = \sum_{i=2}^{n}\frac{1}{(i-1)!} - \frac{1}{i!}$$
$$=\bigg(\frac{1}{1!} - \frac{1}{2!}\bigg)+\bigg(\frac{1}{2!} - \frac{1}{3!}\bigg) +\bigg(\frac{1}{3!}-\frac{1}{4!}\bigg)+\dots+\bigg(\frac{1}{(n-1)!}-\frac{1}{n!}\bigg)$$
Telescoping:
$$=\frac{1}{1!}-\frac{1}{n!} = 1- \frac{1}{n!} = \boxed{\frac{n!-1}{n!}}$$