In the question Algorithms: Recurence Relation, the author asked about the recurrence relation $$T(n) = T(n-1) + n(n-1)$$ and one of the answers proposed assuming $T(n)$ is polynomial, then manipulating the equation to obtain the coefficients.
Question: What reason is there to suspect that this recurrence satisfies a polynomial identity? And how can we apply this to linear recurrences in general?
The Fibonacci Numbers, for example, instead satisfy a exponential solution. So, if we attempted to fit a polynomial solution, it wouldn't work.
Let $a_0,a_1,a_2,a_3,\dots$ be a sequence. Let $b_0,b_1,b_2,b_3,\dots$ be the sequence of (first) differences of the $a_i$. So $b_i=a_{i+1}-a_i$.
In general, if the sequence $b_0,b_1,b_2,\dots$ is given by $b_i=P(i)$, where $P$ is a polynomial of degree $k$, then the original sequence is given by a polynomial of degree $k+1$. This is a result in a large and useful subject called the calculus of finite differences.
It is analogous to the result that if the derivative of a function is a polynomial of degree $k\ge 0$, then the function is a polynomial of degree $k+1$.
Thus, automatically, the sequence of the post is given by a polynomial of degree $3$.