Proof by induction: Is there an example of where statement $P(n) \to P(n+1)$ is true but you can never find a base case

inductionlogic

Is there an example of where one can show implication $P(n) \to P(n+1)$ holds true but the statement $P(n)$ was wrong so you can't find any case where $P(n)$ holds true? In other words, is it possible to get a true implication $P(n) \to P(n+1)$ from a wrong statement $P(n)$? If not why so? Because I know in truth table, $P \to Q$ can be true with $P$ being false since false statement can still lead to a true implication (ex: If $P$ is a false statement $-1 = 1$ then it implies statement $Q$: $(-1)^2=(1)^2$ which is a true statement.). I'm concerned about this because if you can show that the implication $P(n) \to P(n+1)$ is true but if you cannot find the base case, you don't know if your statement $P(n)$ was correct or not. Meaning there is proof by induction seems useless in such case. What am I missing in my understanding here? Thank you in advance.

Best Answer

Trivial source of examples: if $\sum_{k=0}^na_k=b_n$ for all $n\ge0$, $\sum_{k=0}^na_k=b_n+c$ meets your requirement for any constant $c\ne0$.

What you're missing is that we really do need the base case. The principle of induction says if two things are true (base case & inductive step) the result follows.