I had a question
$$\sum_{a=1}^n \frac{1}{a^2}=?$$
I had learned newton's method of undetermined method ,but that doesn't work here because of negative power
than I saw another question
$$\sum_{a=1}^n \frac{1}{a(a+1)}$$
here we transformed it as
$$\sum_{a=1}^n (\frac{1}{a}-\frac{1}{a+1})$$
which on expanding gave
$$\frac{1}{1}-\frac{1}{2}+\frac{1}{2}-\frac{1}{3}+......+\frac{1}{n}-\frac{1}{n+1}$$
where each element cancels out except
$$1-\frac{1}{n+1}$$
which gives the formula
$$\sum_{a=1}^n \frac{1}{n(n+1)}=1-\frac{1}{n+1}=\frac{n}{n+1}$$
but I can't express $a^{-2}$ as two diffrent factors so I thought to use limits(calculus) as
$$\frac{1}{a^2}=\lim_{h\to 0}\frac{1}{a(a+h)}$$
but when I tried to break it then I got $h$ in denominator.
I may be wrong, so please help to calculate the summation.