I have been trying to complete this proof by induction and am stuck. Could someone please help me? Here is my working out.
Prove that $p(n): 9^{n+1}-8n-9$ is divisible by 64 where n is a natural number using proof by induction.
Step 1: Show that $p(1)$ is true \begin{align*} p(1) & = 9^2-8-9 \\ & = 81-17 \\ & = 64 \end{align*} $64$ is divisible by $64$ so $p(1)$ is true.
Step 2: Show that $p(k)=>p(k+1)$ is true.
Assume $9^{k+1}-8k-9$ is divisible by $64$. So, $$9^{k+1}-8k-9=64M$$ where M is a natural number.
Show $p(k+1)$ is divisible by $64$. \begin{align*} 9^{k+2}-8(k+1)-9 & = 9\times9^{k+1}-8k-8-9 \\ & = (8+1)9^{k+1}-8k-9-8 \\ & = 8\times9^{k+1}+(9^{k+1}-8k-8)-9 \\ & = 64M + 8\times9^{k+1} - 8 \end{align*}
This is clearly not divisible by $64$, what have I done wrong or what am I missing?
Thank you.