Chains and flags #
This file defines chains for an arbitrary relation and flags for an order and proves Hausdorff's Maximality Principle.
Main declarations #
IsChain s
: A chains
is a set of comparable elements.maxChain_spec
: Hausdorff's Maximality Principle.Flag
: The type of flags, aka maximal chains, of an order.
Notes #
Originally ported from Isabelle/HOL. The original file was written by Jacques D. Fleuriot, Tobias Nipkow, Christian Sternagel.
Chains #
SuperChain s t
means that t
is a chain that strictly includes s
.
Instances For
A chain s
is a maximal chain if there does not exists a chain strictly including s
.
Equations
- IsMaxChain r s = (IsChain r s ∧ ∀ ⦃t : Set α⦄, IsChain r t → s ⊆ t → s = t)
Instances For
Alias of IsChain.empty
.
Given a set s
, if there exists a chain t
strictly including s
, then SuccChain s
is one of these chains. Otherwise it is s
.
Equations
- SuccChain r s = if h : ∃ (t : Set α), IsChain r s ∧ SuperChain r s t then h.choose else s
Instances For
Predicate for whether a set is reachable from ∅
using SuccChain
and ⋃₀
.
- succ {α : Type u_1} {r : α → α → Prop} {s : Set α} : ChainClosure r s → ChainClosure r (SuccChain r s)
- union {α : Type u_1} {r : α → α → Prop} {s : Set (Set α)} : (∀ a ∈ s, ChainClosure r a) → ChainClosure r (⋃₀ s)
Instances For
An explicit maximal chain. maxChain
is taken to be the union of all sets in ChainClosure
.
Instances For
Hausdorff's maximality principle
There exists a maximal totally ordered set of α
.
Note that we do not require α
to be partially ordered by r
.
Flags #
Equations
- Flag.instSetLike = { coe := Flag.carrier, coe_injective' := ⋯ }
Reinterpret a maximal chain as a flag.
Equations
- Flag.ofIsMaxChain c hc = { carrier := c, Chain' := ⋯, max_chain' := ⋯ }
Instances For
Flags are preserved under order isomorphisms.
Equations
- Flag.map e = { toFun := fun (s : Flag α) => Flag.ofIsMaxChain (⇑e '' ↑s) ⋯, invFun := fun (s : Flag β) => Flag.ofIsMaxChain (⇑e.symm '' ↑s) ⋯, left_inv := ⋯, right_inv := ⋯ }
Instances For
Equations
- Flag.instUnique = { default := { carrier := Set.univ, Chain' := ⋯, max_chain' := ⋯ }, uniq := ⋯ }