Let $n ≥ 0$ be an integer. Prove by induction: 64 divides $3^{2n+2} + 56n + 55$
general expression: $3^{2n+2} + 56n + 55 = 64m$
1st I substitute $P(0)$ and it gives me true: $9+55 = 64$ (if m = 1 the condition is true)
2nd I assume $n = k$ and I substitute saying $3^{2k+2} + 56k + 55$
and then I don't know what to do to prove the claim.
Let $F(n) = 3^{(2n+2)} + 56n + 55$
Then $F(n+1) = 3^{(2(n+1)+2)} + 56(n+1) + 55$
Then we get:
$F(n+1) = 3^{(2n+4)} + 56n + 56 + 55 = \\ 9.3^{(2n+2)} + (9.56.n - 8.56.n) + 56 + (9.55-8.55) = \\ (9.3^{(2n+2)} + 9.56.n + 9.55.n) - 8.56.n - 8.55 + 56 = \\ 9.F(n) - 448.n - 384 = \\ 9.F(n) - 64.7.n - 64.6$
Now from the last form of F(n+1) it's already obvious that: if 64/F(n) then 64/F(n+1).
And this is exactly the induction step you have to make to finalize your proof.
In general: usually such problems are solved by expressing $F(n+1)$ in terms of $F(n)$. This way you can use the induction hypothesis (which you assume it's true). In our case that's the fact that $64 / F(n)$. And then what's left will be usually something which is obviously divisible by that number which they ask you to prove that it's divisible by (in our case that leftover is the value $64.7.n + 64.6$ which is obviously divisible by 64).