The exercise 2.b of my textbook ask me to prove that: $$\text{(P): }\;\forall n\in \mathbb{N}, 13\;|\;(3^{n+2}+4^{2\cdot n+1})$$
I would like to know if my proof is correct and if not what I need to make it correct:
$$P\iff \forall n\in \mathbb{N}\;\exists \;q\in\mathbb{N}\;\text{such that }13 \cdot q = \;(3^{n+2}+4^{2\cdot n+1})$$
$$\text{P(1):} \; 3^3+4^3=91\;\text{which is equal to }13\cdot 7\\ \text{Let assume that P(k) is true for some k }\in \mathbb{N},\\13 \cdot q = \;(3^{n+2}+4^{2\cdot n+1})\\3\cdot 4\cdot(13 \cdot q )= \;(3^{n+2}+4^{2\cdot n+1})\cdot 3\cdot4\\ 13 \cdot (12\cdot q) = \;(4\cdot3^{n+3}+3\cdot4^{2\cdot n+2})\\\text{P(n) imply P(n+1) thus P(n) is true for all natural numbers n}$$
Basically you did it all right but you missed the last step.Namely you have the first step of induction P(1) done(usually called the base case).Now you have the hypothesis that P(k) is true which implies that $13| 3^{k+2} + 4^{2k +1}$ from which we can conclude follwing for some natural number $q$:
$$13q = 3^{k+2} +4^{2k+1} \implies 13q-4^{2k+1}=3^{k+2}$$
Now to conclude your proof and make it right we need to prove the P(k+1) which comes to :
$$3^{(k+1)+2} + 4^{2(k+1)+1} = 3^{k+2}3^1 + 4^{2k+1}4^2$$ $$=(13q-4^{2k+1})3 + 16\cdot4^{2k+1}$$ $$= 39q -3\cdot 4^{2k+1} + 16\cdot 4^{2k+1}$$ $$= 39q+13\cdot4^{2k+1}=13(13q + 4^{2k+1})$$
And thus from the last form we can see that it is obviously divisible by 13.And that would be correct proof