On 4/20/2019 5:29 AM, j4n bur53 wrote:
> My morning shower proof is this proof:
>
> When can we do induction? - Tobias Kildetoft
>
> Proof: Let A⊆X be a non-empty subset and
> let a∈A. Now the set {x∈X∣x≤a}∩A is finite
> and non-empty and thus has a minimal element,
> which is a minimal element in A.
>
>
https://math.blogoverflow.com/2015/03/10/when-can-we-do-induction/?cb=1
>
> He also writes:
>
> "So my claim is that if X is a totally ordered
> set, then we can do induction on X if and only
> if X is well-ordered. But this then refers to
> the “strong” induction.
>
> What happened to the other kind? Can we make sense
> of the other kind if we just have a total order?
> The answer to the last question is: Almost.
>
> If we have a well-ordered set (with a small
> additional condition), then we can in fact make
> sense of the usual kind of induction."
>
> What is the small additional condition?
> I did not yet read the full blog. So I
> currently don't know.
The additional condition Kildetoft gives is that
anything other than 0 has an immediate predecessor.
I suspect that there are lots of different ways to give
an equivalent condition. The one that makes the most sense
to me is to require everything in the well-order to be a
finite element.
Ay e X: Finite({ z e X | z < y })
If all y in X are finite, then all y must have an immediate
predecessor or be 0.
(Suppose w e X has no immediate predecessor. Then w is
infinite or is 0.)
If not all y in X are finite, then, for some y ~= 0,
y does not have an immediate predecessor.
(omega is the first infinite ordinal and it does not have
an immediate predecessor. If an infinite y is in X,
omega is also in X.)
----
The transfinite version of induction is
| If there is a counter-example to property P(x), then
| there is a _first_ counter-example to property P(x).
This is basically just the Least Element Principle.
It looks better written as its contrapositive.
| If there is no _first_ counter-example to P(x),
| then there is no counter-example to P(x) _at all_ .
More formally:
| ~Ex:( ~P(x) & Ay:( y < x -> P(y) ) ) -> Az:P(z)
Or:
| Ax,Ay:( ( y < x -> P(y) ) -> P(x) ) -> Az:P(z)
If we add to that the requirement that every non-zero
element have an immediate predecessor (that every element
be finite, as I think of it), then, for a first _non-zero_
counter-example x, ~P(x) and P(x-1).
| If there is a counter-example to property P(x), then
| there is a _first_ counter-example x, and either
| ~P(0) for x = 0, or ~P(x) and P(x-1) for x ~= 0.
The contrapositive of _this_ is the familiar Peano-style
induction rule.
| If P(0) and, for all x ~= 0, ~P(x-1) or P(x), then
| there is no counter-example to P(x) at all:
| for all x, P(x).
Or, even better:
| ( P(0) & Ay:(P(y) -> P(y+1)) ) -> Ax:P(x)