It can be seen that $6^2 - 5^2 + 4^2 - 3^2 + 2^2 - 1^2 =21 = T_6$, the sixth triangle number. Prove that the $n$ th triangle number, $T_n = n^2 - (n - 1)^2 + (n - 2)^2- \cdots + 1^2$.
Well my solution is :
if $n$, and group them into $n/2$ pairs:
\begin{align} S & = [n^2 - (n - 1)]^2 + \cdots + (6^2 - 5^2) + (4^2 - 3^2) + (2^2 - 1^2)\\ &= 2n - 1 + \cdots + 11 + 7 + 3\\ &= 3 + \cdots + 2n - 5 + 2n - 1\\ 2S&= \frac {n}{2}(2n + 2)\\ &= n(n + 1)\\ S &= \frac{n(n + 1)}{2} \end{align}
This is where I stopped. I need explanations please