Lax979537.LeastFixedPoints
Least fixed points on finite relations
concepts/Lax979537/LeastFixedPoints.lean · lax-979537
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Evidence
This concept declares 3 statements. Each proof establishes one of them relative to its assumptions.
1st statement finiteConvergence proven
2nd statement fixedPoint proven
3rd statement least proven
Definition and theorem
For a monotone operator on sets, its least fixed point is the intersection of all sets satisfying . Starting from the empty set, iterate . On a finite set of possible elements, stage is already the least fixed point. For a -ary relation on an -element universe, there are possible tuples.
The intersection definition is total even for nonmonotone operators; the fixed-point and convergence statements explicitly require monotonicity.
Lean source view on GitHub
| 1 | import Mathlib.Data.Set.Lattice |
| 2 | import Mathlib.Data.Fintype.Card |
| 3 | |
| 4 | /-! |
| 5 | --- |
| 6 | title: Least fixed points on finite relations |
| 7 | type: definition and theorem |
| 8 | --- |
| 9 | For a monotone operator on sets, its least fixed point is the intersection |
| 10 | of all sets satisfying . Starting from the empty set, |
| 11 | iterate . On a finite set of possible elements, stage is already |
| 12 | the least fixed point. For a -ary relation on an -element universe, |
| 13 | there are possible tuples. |
| 14 | |
| 15 | The intersection definition is total even for nonmonotone operators; the |
| 16 | fixed-point and convergence statements explicitly require monotonicity. |
| 17 | -/ |
| 18 | |
| 19 | namespace Lax979537.LeastFixedPoints |
| 20 | |
| 21 | def leastFixedPoint {α : Type} (F : Set α → Set α) : Set α := |
| 22 | sInf {R | F R ⊆ R} |
| 23 | |
| 24 | def stage {α : Type} (F : Set α → Set α) : Nat → Set α |
| 25 | | 0 => ∅ |
| 26 | | t + 1 => F (stage F t) |
| 27 | |
| 28 | axiom fixedPoint {α : Type} (F : Set α → Set α) (hF : Monotone F) : |
| 29 | F (leastFixedPoint F) = leastFixedPoint F |
| 30 | |
| 31 | axiom least {α : Type} (F : Set α → Set α) (R : Set α) |
| 32 | (hR : F R ⊆ R) : leastFixedPoint F ⊆ R |
| 33 | |
| 34 | axiom finiteConvergence {α : Type} [Fintype α] |
| 35 | (F : Set α → Set α) (hF : Monotone F) : |
| 36 | stage F (Fintype.card α) = leastFixedPoint F |
| 37 | |
| 38 | end Lax979537.LeastFixedPoints |
| 39 |
Builds on
none
Community review
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above; your ORCID profile must share a public name.
0 comments