Least fixed points on finite relations
Lax751879.LeastFixedPoints · concepts/Lax751879/LeastFixedPoints.lean · lax-751879
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
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.
Concept map
Evidence
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 Lax751879.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 Lax751879.LeastFixedPoints |
| 39 |
Builds on
none
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments