Suppose we want to prove that a property $P$ is true for every integer in $ℕ_{odd}$ = $\{1,3,5,7,9,...\}$. Consider the following induction mechanism:
Base case: Verify the property $P(1)$
Inductive step: Prove that for all $k ≥ 1, P(k) ⇒ P(k + 1)$
(a) Why might the above mechanism not constitute a valid proof?
(b) How would you modify the inductive step to obtain a valid proof?
(c) Use your modified mechanism to prove that every integer $n$ ∈ $ ℕ_{odd}$ satisfies $2^n+3^n = 5m$, where $m$ is an integer.
What I did
A) What I thought is that it doesn't constitute a valid proof because it is not complete. In that it should have been a strong induction for the set of all odd numbers in the set $ℕ_{odd}$. It only verifies $P(1)$.
B) I am not sure, but to continue on from the previous one, maybe continue by changing the inductive step to constitute for all odd numbers in the set $ℕ_{odd}$.
C) I am also not sure, but most likely this is an inductive proof where base case = $2^1+3^1 = 5(1) = 5$. Inductive step, assuming $k$ is in the set of all odd integers. $P(K)$ = $2^k+3^k= 5m $ and prove this for $k+1$. $P(K+1)$ = $2^{2k+1}+3^{2k+1} = (2^k)^2 \times 2 + (3^k)^2 \times 3 = 5m$, which leads to $P(K)$.
Question
I need help with B) and C) for how to modify the inductive step to obtain a valid proof, and use that modified mechanism to satisfy the proof.
Note that, in the example where $P(k)$ means $2^k+3^k=5m$ for some integer $m$,
$P(1)$ is true, but $P(2)$ is not true, so you can't prove that $P(n)\implies P(n+1)$.
To prove $P(n)$ for all odd $n$, you can show that $P(n)\implies P(n+2)$
using $2^{n+2}+3^{n+2}=4(2^n)+9(3^n)=4(2^n+3^n)+5(3^{n})$.