Let's look at induction on the natural numbers. You can prove $P(k)$ for any $k \in \mathbb{N}$ if you can prove:
- $P(0)$ is true
- For all $n \ge 0$, $P(n) \rightarrow $P(n+1)$.
This works works, intuitively, because a proof of $P(k)$ either follows directly from (1) if $k = 0$, or indirectly from (2) if $k > 0$. (That is, the proof of $P(k)$ follows from the proof of $P(k-1)$ which follows from the proof of $P(k-2)$, ..., which follows from the proof of $P(1)$, which follows from the proof of $P(0)$, which is already established.
For integers, though, you have stated that you can prove $P(k)$ for any $k \in \mathbb{Z}$ if you can prove
- $P(0)$ is true
- There exists $n \in \mathbb{Z}$ for which $P(k)$ is true
- For all $k \in \mathbb{Z}$, $P(k) \rightarrow P(k+1)$
- For all $k \in \mathbb{Z}$, $P(k) \rightarrow P(k-1)$
Now, how do we prove $P(57)$? Do we prove $P(56)$ is true, or do we prove $P(58)$ is true? Either one seems sufficient, but one either leads to a circular argument or spirals off towards infinity. The problem is that nothing forces you to reduce your proof of $P(k)$ to the established proof that $P(0)$ is true. That's because you haven't explicitly tied your argument that induction works for integers to a well-ordering of the integers. That's easy to fix, though. It turns out that (2) is insufficient; not just any assumption will work. It also turns out that (3) and (4) are overly broad. You don't need to assume (3) holds for all integers, only the positive integers. Likewise, (4) need only hold for the negative integers.
So we can reformulate our inductive principle over the integers to
- $P(0)$ is true
- For all $k \ge 0 \in \mathbb{Z}$, $P(k) \rightarrow P(k+1)$
- For all $k \le 0 \in \mathbb{Z}$, $P(k) \rightarrow P(k-1)$
(Note that in the case of positive integers, this reduces exactly to induction over natural numbers.)
Now, our proof that $P(57)$ is true necessarily follows from a proof that $P(56)$ is true and (2), while a proof that $P(-57)$ is true follows from $P(-55)$ and (3). For any $k \ne 0$, exactly one of (2) or (3) can be used to connect the truth of $P(k)$ to the truth of $P(0)$. We won't, for example, use $P(-58)$ to prove $P(-57)$, because even if we could, it doesn't help us get close to $P(0)$, and it prevents us from immediately turning around and using $P(-57)$ to prove the truth of $P(-58)$.