Nice to know that HSC math is brilliant 
I think the main reason why they teach the tangent half-angle sub is because of 4U integrals of the form \( \int \frac{dx}{a + b\sin x + c \cos x} \), because without going into crafty integration techniques it's a nice bash. Of course, for definite integrals one would probably prefer complex analysis once they're at the level, but it's probably the better option in high school (especially since most integrals then are indefinite)
Although, I interpreted his sum as \(1\times 2 + 3\times 4 + 5\times 6 + \dots\) - fairly sure that ain't an AP?
LOL. I must have been on some crack when attempting to answer his question. That's awkward.
And you're talking about a very specific class of definite integral. What if I wanted to integrate from 0 to pi/3? Good luck using complex analysis for that.
Here's my favourite technique for doing sums like these.
 = \sum_{k=1}^n k(k+1)\\<br />S(1) = 2\\<br />S(2) = 2 + 6 = 8\\<br />S(3) = 2 + 6 + 12 = 20\\<br />S(4) = 2 + 6 + 12 + 20 = 40\\<br />S(5) = 2 + 6 + 12 + 20 + 30 = 70<br />)
Here's a little known fact.
<br />)
is a mth order polynomial in n if p is a (m-1)th order polynomial. Then, here we know that p(k) = k(k+1), a quadratic, so we know the sum MUST be a cubic. Cubics are defined by four points, so all we need now is a cubic that satisfies S(1) = 2, S(2) = 8, S(3) = 20, S(4) = 40. You can show that the cubic given by a different poster is the only cubic that passes through these four points.
Another cool way:
 = \sum_{k=1}^n k(k+1)\\<br />(k+1)^3 - k^3 = 3k(k+1) + 1\\<br />\therefore \sum_{k=1}^n (k+1)^3 - k^3 = 3\sum_{k=1}^n k(k+1) + \sum_{k=1}^n 1 = 3S(n) + n\\<br />(n+1)^3 - 1 = 3S(n) + n\\<br />S(n) = \frac{(n+1)^3 - (n+1)}{3} = \frac{(n+1)((n+1)^2 - 1)}{3} = \frac{n(n+1)(n+2)}{3}<br />)
The first method always works, the second method is a cool trick that happens to work here. Note that I can evaluate the sum of the cubes because it telescopes; most of the terms in summing (k+1)^3 and k^3 will cancel, leaving only the two terms I've written.