Induction proof to find formula
I ran into some problem when I am doing some review. I need to find the formula for the following by exploring the cases n = 1,2,3,4 and prove by induction
I have this sequence
$$a_n = 1/(1*2) + 1/(2*3) + 1/(3*4) + ...... + 1/n(n+1)$$
I know how to do it when they give you the formula, but how will you find the formula for this example?
help will be appreciated
Thanks
Since $\frac{1}{n(n+1)}=\frac{1}{n}-\frac{1}{n+1}$, we have that $a_n=\sum_{k=1}^{n}\frac{1}{k(k+1)}=\frac{1}{1}-\frac{1}{2}+\frac{1}{2}-\frac{1}{3}+\dots+\frac{1}{n}-\frac{1}{n+1}=1-\frac{1}{n+1}$.
The general trick is the partial fraction decomposition. See the wikipedia: http://en.wikipedia.org/wiki/Partial_fraction_decomposition.