From Concrete Mathematics, there is a problem called Lines in the Plane on Page 7... At one point the recurrence is described like so:
$L_n = L_{n-1} + n$
I'm not clear on how this gets accomplished during the conversion to closed form:
$L_{n-1} + n = (\frac{1}{2}(n-1)n+1) = \frac{1}{2}n(n+1)+1$
This is described as "the key induction step"...
I've looked back through my algebra notes regarding FOIL, polynomials, etc. but I'm not finding the term/method for working this out.
Any ideas?