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.