If I constructed a proof that worked like this, shown true for n=1. If assumed true for n=k then shown to be true for k-1 (i.e. rather than k+1) blah blah ..
Is this just no proof at all or has it got any validity?
Brian
If I constructed a proof that worked like this, shown true for n=1. If assumed true for n=k then shown to be true for k-1 (i.e. rather than k+1) blah blah ..
Is this just no proof at all or has it got any validity?
Brian
The proof would be legitimate, but only if you were trying to prove statements where $n$ is less than or equal to $1$. Otherwise you're just going the wrong direction with your induction.
Ordinarily, induction works by proving that $P(0)$ is true (a base case), followed by proving that $P(n) \Rightarrow P(n+1)$ for any given $n$ (the inductive step). The reason this works is because, having proven $P(0)$, your inductive step automatically proves $P(1)$, which in turn automatically proves $P(2)$, which in turn proves $P(3)$, etc. The chain ratchets up forever.
In your example, you'd be proving that $P(n) \Rightarrow P(n-1)$ instead of the usual, "upwards facing" inductive step. But as with all induction, this is just an implication; if the premise is false, the consequent doesn't follow. From the start, the only statement you've concretely proven is the base case: $P(0)$ (or as you've written it, $P($n$)$).
By the inductive step, this in turn proves $P(-1)$, which in turn proves $P(-2)$, which proves $P(-3)$, etc. So you'd never inductively prove your usual set of results for the positive integers; you've only ever prove statements where $n$ is less than or equal to $1$.
It has. Given the predicate $P(n)$ to be proved.
Prove $P(0)$.
Prove $P(0)\Rightarrow P(1)$. Then by modus ponens, you have proven $P(1)$.
Prove $P(0)\wedge P(1) \Rightarrow P(2)$ (strong induction) or $P(1)\Rightarrow P(2)$. Then by modus ponens, you have proven $P(2)$.
You get the pattern...