On a recent assignment, I had a question where I had to prove a certain statement to be true for all $n\in\mathbb{Z}$. The format of my proof looked like this:
- Statement is true when $n=0$
- "Assume statement is true for some $k\in\mathbb{Z}$"
- Statement must be true for $k+1$
- Statement must be true for $k-1$
My professor said the logic is flawed because of my second bullet point above. She says that since mathematical induction relies on the well-ordering principle and since $\mathbb{Z}$ has no least or greatest element, that using induction is invalid.
Instead, she says my argument should be structured like this:
- Statement is true when $n=0$
- "Assume statement is true for some integer $k\geq0$"
- Statement must be true for $k+1$
- "Assume statement is true for some integer $k\leq0$"
- Statement must be true for $k-1$
I am failing to understand where my logic fails and why I need to split the assumptions like she is suggesting. Could someone explain why relying on the well-ordering principle makes the structure of my proof logically unsound?
You are correct. You don't even need to start with $n=0$, you can start at any integer.
To prove that your approach is correct, see that if you have proven your version of the induction step, you have automatically proven your teacher's version of the induction step. This in turn then lets you reach your teacher's conclusion step, which is also your conclusion step.
Your teacher is saying that you need to induct on the positive integers and the negative integers separately. While this is closer to standard (natural number) induction, and also a correct method of proof, it is not necessary.
(Of course, there is the theoretical possibility that there are statements which can only be proven in the direction $k\implies k+1$ for positive $k$ and $k\implies k-1$ for negative $k$, and in those very special cases, your teacher's version of induction will actually lead to a proof, while your induction will fail to reach a conclusion, since you can't get a proof for your induction step. I am not fluent enough in this area of logic to know whether such cases can ever exist, but if they do, then that's a point to your teacher. But if your proof in this particular instance is indeed correct, then I would have no issues calling it a proof by induction.)