The problem states:
Let $b_0$ = $12$ and $b_1$ = $29$, and for all integers $k ≥ 2$, let $b_k$ = $5b_{k-1}-6b_{k-2}$.
Prove that for all $n ≥ 0$, $b_n$ = $5\:\cdot \:3^n\:+\:7\:\cdot\:2^n$
I'm familiar with questions where I'm supposed to find the close form of a recurrence relation, and then prove that formula via induction. This question is more strangely structured, however, and I'm not sure how to proceed. Am I supposed to show that:
$b_k$ = $5b_{k-1}-6b_{k-2}$ = $b_n$ = $5\:\cdot \:3^n\:+\:7\:\cdot \:2^n$
i.e. use strong induction to show both statements are equivalent?
If that's the case, do I show $b_n$ = $5\:\cdot \:3^n\:+\:7\:\cdot \:2^n$ holds for n = 0 and 1 (establishing base cases) and then manipulate what emerges algebraically to equal $b_k$ = $5b_{k-1}-6b_{k-2}$ ? Or should I do that to $b_k$ = $5b_{k-1}-6b_{k-2}$? Advice and insight is most welcome!
First, show that this is true for $n=0$ and $n=1$:
$b_{0}=5\cdot3^{0}+7\cdot2^{0}$
$b_{1}=5\cdot3^{1}+7\cdot2^{1}$
Second, assume that this is true for $n-2$ and $n-1$:
$b_{n-2}=5\cdot3^{n-2}+7\cdot2^{n-2}$
$b_{n-1}=5\cdot3^{n-1}+7\cdot2^{n-1}$
Third, prove that this is true for $n$:
$b_{n}=$
$5\color\red{b_{n-1}}-6\color\green{b_{n-2}}=$
$5(\color\red{5\cdot3^{n-1}+7\cdot2^{n-1}})-6(\color\green{5\cdot3^{n-2}+7\cdot2^{n-2}})=$
$25\cdot3^{n-1}+35\cdot2^{n-1}-30\cdot3^{n-2}-42\cdot2^{n-2}=$
$25\cdot3^{n-1}+35\cdot2^{n-1}-10\cdot3^{n-1}-21\cdot2^{n-1}=$
$15\cdot3^{n-1}+14\cdot2^{n-1}=$
$5\cdot3^{n}+7\cdot2^{n}$
Please note that the assumption is used only in the parts marked red and green.