I am interested in solving recursions and while I was trying to solve this one: $a_n=a_{n-1}+4n-3$
I ran onto a problem, I don't see how to find an explicit solution using standard inhomogeneous method(finding homogeneous and particular solution). Specifically I have a problem with finding particular solution. Problem for me is how to find expression to represent $f(n)=4n-3$. I do know how to solve for $f(n)=n$ with representing $f(n)$ as polynomial $an+b$ and substituting in the recursion. Is there a way to solve this type of recursions when $f(n)$ isn't depending just on $n$. Can we solve for even more complicated expressions such as $f(n)=5n^2+2n+4$ or any polynomial of degree $n$