Ok, so I have this question, and we never went over this or how to solve it in class. I can't find an example in the book either.
How do I show that $f_n = 3^nA + 2^nB$ satisfies the recurrence equation $f_n = 5f_{n-1} - 6f_{n-2}$ for $n\geq2$?
What exactly is $A$ and $B$, and how do I even get started? What would be the first thing I look for? (If this is a calculus type problem, keep in mind that my highest math attained so far is trig, so sorry for being ignorant, just haven't seen this type of problem in book, power point, notes, or lecture).
substituting we get: $$5f_{n-1}-6f_{n-2}=$$
$$5(A*3^{n-1}+B*2^{n-1})-6(A*3^{n-2}+B*2^{n-2})=$$
$$5A*3^{n-1}+5B*2^{n-1}-6A*3^{n-2}-6B*2^{n-2}=$$
$$5A*3^{n-1}+5B*2^{n-1}-2A*3^{n-1}-3B*2^{n-1}=$$
$$ 3A*3^{n-1}+2B*2^{n-1}=A*3^n + B*2^n$$
In conclusion all you had to do was substitute and use laws of exponents.
In general whenever you have to prove a recurrence relation you should just evaluate for $f_n$, and then evaluate the thing they are telling you it should be equal too. If they are the same then it holds. Hope this helps.
Regards.