Show that the sequence $a_n=3^{n+4}$ is a solution of the recurrence relation $a_n=4a_{n-1}-3a_{n-2}$.
I'm stuck on this question as I'm having trouble figuring it out when $a_n=3^{n+4}$.
After substituting $3^{n+3}$ for both n's in $4a_{n-1}$ and $3a_{n-2}$, I have no idea where to go from there.
Consider the right hand side of the relation: $4a_{n-1}-3a_{n-2}$.
Since $a_n=3^{n+4}=81\cdot 3^n$, we have $a_{n-1}=81\cdot 3^{n-1},a_{n-2}=81\cdot 3^{n-2}$.
Substitute that in the above term: $$4\cdot (81\cdot 3^{n-1})-3\cdot (81\cdot 3^{n-2})$$ Taking out $81$ common and writing $4$ as $3+1$, the above transforms to $$81(3\cdot 3^{n-1}+3^{n-1}-3^{n-1})$$ Now this is nothing but $81\cdot 3^n$ which in turn is equal to $a_n$.
Ta-da!