Let $a_n = 2^n + 5 \cdot3^n$.
I'm having a hard time understanding the concept of iteration that needs to be applied to prove this.
I understand I can substitute the following:
$$a_n = 5(2^{n-1}+ 5 \cdot 3^{n-1})-6(2^{n-2}+ 5 \cdot 3^{n-2})$$
But I'm not clear on how to apply forward/backward substitution within the equation.
You are showing:
$$2^n+5(3^n)=5(2^{n-1}+5(3^{n-1}))-6(2^{n-2}+5(3^{n-2}))$$ Collate powers of $2$, you have: $$5(2^{n-1})-6(2^{n-2})$$ $$=5(2^{n-1})-3(2^{n-1})$$ $$=2(2^{n-1})=2^n$$ Now do the same for powers of $3$, so:
$$25(3^{n-1})-30(3^{n-2})=\ldots$$