A sequence $a_n$ is defined by:
$a_1=1, a_2 = 1, a_n = a_{n-1} +2*a_{n-2}$ for all n> 2. show that $a_n = 1/3*(-1)^{n-3}+{2^n}/3$ by induction.
I'm not quite sure on how to approach this induction as I haven't really learnt it yet, but I think you prove its true for n=3 and then work out $a_n$ for n=n+1 but when I've tried i cant find the proof in it.
First off, you prove that the statement is true for $n=3$. I assume that is simple enough.
Then, you assume that the fact is true for $n$, and you prove that it is then true for $n+1$. Alternatively, and this is much better here, you can assume that it is true for all $k$ such that $k\leq n$, then it is true for $n+1$.
So, your assumptions are now:
Now, I advise you to first look at the fact that
$$a_{n+1} = a_n + 2a_{n-1}$$
Now, replace the value of $a_n$ with $\frac13 (-1)^{n-3} + \frac{2^n}3$ and replace $a_{n-1}$ with $\frac13 (-1)^{(n-1)-3} + \frac{2^{(n-1)}}{3}$
You will get some expression $a_{n+1} = f(n)$, and if you can prove that this expression is equal to $$a_{n+1} = \frac13(-1)^{(n+1)-3} + \frac{2^{n+1}}3$$ you are done.