Well-founded relations #
A relation is well-founded if it can be used for induction: for each x
, (∀ y, r y x → P y) → P x
implies P x
. Well-founded relations can be used for induction and recursion, including
construction of fixed points in the space of dependent functions Π x : α , β x
.
The predicate well_founded
is defined in the core library. In this file we prove some extra lemmas
and provide a few new definitions: well_founded.min
, well_founded.sup
, and well_founded.succ
.
If r
is a well-founded relation, then any nonempty set has a minimal element
with respect to r
.
A minimal element of a nonempty set in a well-founded order
Equations
- H.min p h = classical.some _
The supremum of a bounded, well-founded order
A successor of an element x
in a well-founded order is a minimal element y
such that
x < y
if one exists. Otherwise it is x
itself.
Given a function f : α → β
where β
carries a well-founded <
, this is an element of α
whose image under f
is minimal in the sense of function.not_lt_argmin
.
Equations
Given a function f : α → β
where β
carries a well-founded <
, and a non-empty subset s
of α
, this is an element of s
whose image under f
is minimal in the sense of
function.not_lt_argmin_on
.
Equations
- function.argmin_on f h s hs = _.min s hs