Module docstring
{"# 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 WellFounded is defined in the core library. In this file we prove some extra lemmas
and provide a few new definitions: WellFounded.min, WellFounded.sup, and WellFounded.succ,
and an induction principle WellFounded.induction_bot.
"}