I need to prove $\sum\limits_{i=2}^{n}\frac{1}{(i-1)i}$ = $\frac{(n-1)}{n}$ using induction. I am getting stuck midway through the inductive step.
Here is what I have:
$\forall n\geq 2$, where $n\in\mathbb{N}, P(n)$ is the statement "$\sum\limits_{i=2}^{n}\frac{1}{(i-1)i}$ = $\frac{(n-1)}{n}$".
Base case:
$\sum\limits_{i=2}^{2}\frac{1}{(i-1)i}$ = $\frac{1}{2}$ = $\frac{(2-1)}{2}$ so $P(2)$ is true.
Inductive assumption: Assume $P(n)$ is true. Need to show $\sum\limits_{i=2}^{n+1}\frac{1}{(i-1)i}$ = $\frac{((n+1)-1)}{(n+1)}$.
$\sum\limits_{i=2}^{n}\frac{1}{(i-1)i}$ + $\frac{1}{n^{2}}$ = $\frac{(n-1)}{n}$ + $\frac{1}{n^{2}}$
= $\frac{n(n-1) + 1}{n^{2}}$ = $\frac{n^{2}-n+1}{n^{2}}$ I got stuck here and tried working backward from $\frac{((n+1)-1)}{(n+1)}$, which gives me:
$\frac{((n+1)-1)}{(n+1)}$ = $\frac{n}{(n+1)}$
Any suggestions on what to do next or where I may be going wrong?
For $n\geq 2$, let $S(n)$ denote the statement $$ S(n) : \sum_{i=2}^n \frac{1}{(i-1)i}=\frac{n-1}{n}. $$ Base step ($n=2$): $S(2)$ says that $\frac{1}{(2-1)2}=\frac{1}{2}=\frac{2-1}{2}$, and this is true.
Inductive step: Fix some $k\geq 2$ and assume that $S(k)$ is true where $$ S(k) : \sum_{i=2}^k \frac{1}{(i-1)i}=\frac{k-1}{k}. $$ To be shown is that $S(k+1)$ follows where $$ S(k+1) : \sum_{i=2}^{k+1} \frac{1}{(i-1)i}=\frac{k}{k+1}. $$ Beginning with the left-hand side of $S(k+1)$, \begin{align} \sum_{i=2}^{k+1} \frac{1}{(i-1)i} &= \frac{1}{k(k+1)}+\sum_{i=2}^{k}\frac{1}{(i-1)i}\tag{by defn. of $\Sigma$}\\[1em] &= \frac{1}{k(k+1)}+\frac{k-1}{k}\tag{by ind. hyp.}\\[1em] &= \frac{1+(k-1)(k+1)}{k(k+1)}\tag{common denom}\\[1em] &= \frac{k^2}{k(k+1)}\tag{simplify}\\[1em] &= \frac{k}{k+1}\tag{desired expression}, \end{align} we end up at the right-hand side of $S(k+1)$, completing the inductive step.
Thus, by mathematical induction, the statement $S(n)$ is true for all $n\geq 2$. $\blacksquare$