The closure of intersections and unions
Lax871432.IntersectionsUnions · concepts/Lax871432/IntersectionsUnions.lean · lax-871432
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Lemma
Let be an arbitrary index set and let be a family of graph classes. Then
Concept map
Evidence
In the paper
- page 3 of this submission's paper
Lean source view on GitHub
| 1 | import Lax871432.DistinguishingClosure |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: The closure of intersections and unions |
| 6 | type: lemma |
| 7 | --- |
| 8 | Let be an arbitrary index set and let be a family of graph |
| 9 | classes. Then |
| 10 | |
| 11 | |
| 12 | |
| 13 | |
| 14 | -/ |
| 15 | |
| 16 | open Lax871432.DistinguishingClosure Lax871432.GraphClasses |
| 17 | |
| 18 | namespace Lax871432.IntersectionsUnions |
| 19 | |
| 20 | /-- The closure of an intersection is contained in the intersection of the closures. -/ |
| 21 | axiom cl_iInf_le_iInf_cl {I : Type*} (𝓕 : I → GraphClass) : |
| 22 | cl (⨅ i, 𝓕 i) ≤ ⨅ i, cl (𝓕 i) |
| 23 | |
| 24 | /-- The union of the closures is contained in the closure of the union. -/ |
| 25 | axiom iSup_cl_le_cl_iSup {I : Type*} (𝓕 : I → GraphClass) : |
| 26 | ⨆ i, cl (𝓕 i) ≤ cl (⨆ i, 𝓕 i) |
| 27 | |
| 28 | end Lax871432.IntersectionsUnions |
| 29 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments