Lax17.SmallLinkedSubsets
Linking small terminal subsets
concepts/Lax17/SmallLinkedSubsets.lean · lax-17
No public endorsements yet.
Loading review…
Sign in with ORCIDConcept map
Theorem
Disjoint equally large subsets of a node-well-linked set can be linked inside the same cluster.
Lean source view on GitHub
| 1 | import Lax17.Linkedness |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Linking small terminal subsets |
| 6 | type: theorem |
| 7 | --- |
| 8 | Disjoint equally large subsets of a node-well-linked set can be linked |
| 9 | inside the same cluster. |
| 10 | -/ |
| 11 | |
| 12 | namespace Lax17.SmallLinkedSubsets |
| 13 | |
| 14 | universe u |
| 15 | |
| 16 | /-- Disjoint equally large subsets of a node-well-linked set are linked |
| 17 | inside the same cluster. -/ |
| 18 | axiom smallLinkedSubsets : |
| 19 | ∀ {V : Type u} [DecidableEq V] (G : SimpleGraph V) |
| 20 | (C X A B : Finset V), |
| 21 | Lax17.Linkedness.NodeWellLinkedIn G C X → |
| 22 | A ⊆ X → B ⊆ X → Disjoint A B → A.card = B.card → |
| 23 | Lax17.Linkedness.NodeLinkedIn G C A B |
| 24 | |
| 25 | end Lax17.SmallLinkedSubsets |
| 26 |
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