Bicliques with pendant neighbors
Lax689614.Biclique · concepts/Lax689614/Biclique.lean · lax-689614
No public endorsements yet.
Loading review…
Sign in with ORCIDNatural Language Statement
Theorem
Lemma 6. Partition the surviving vertices into sets . The sets and induce a complete bipartite graph, is independent, and each vertex of has a neighbor in whose only surviving neighbor is that vertex. Other edges between and are unrestricted. The value is . Either side of the biclique may be empty.
Concept map
Lean source view on GitHub
| 1 | import Lax689614.Grundy |
| 2 | |
| 3 | /-! |
| 4 | --- |
| 5 | title: Bicliques with pendant neighbors |
| 6 | type: theorem |
| 7 | --- |
| 8 | Lemma 6. Partition the surviving vertices into sets . The sets |
| 9 | and induce a complete bipartite graph, is independent, and |
| 10 | each vertex of has a neighbor in whose only surviving |
| 11 | neighbor is that vertex. Other edges between and are |
| 12 | unrestricted. The value is |
| 13 | . |
| 14 | Either side of the biclique may be empty. |
| 15 | -/ |
| 16 | |
| 17 | namespace Lax689614.Biclique |
| 18 | |
| 19 | def g (a b : ℕ) : ℕ := (a + b) % 2 + 2 * (min a b % 2) |
| 20 | |
| 21 | structure Partition {V : Type} [DecidableEq V] (G : SimpleGraph V) |
| 22 | (S L R I : Finset V) : Prop where |
| 23 | cover : S = L ∪ R ∪ I |
| 24 | left_right : Disjoint L R |
| 25 | left_independent : Disjoint L I |
| 26 | right_independent : Disjoint R I |
| 27 | left_stable : ∀ u ∈ L, ∀ v ∈ L, ¬ G.Adj u v |
| 28 | right_stable : ∀ u ∈ R, ∀ v ∈ R, ¬ G.Adj u v |
| 29 | independent_stable : ∀ u ∈ I, ∀ v ∈ I, ¬ G.Adj u v |
| 30 | complete : ∀ u ∈ L, ∀ v ∈ R, G.Adj u v |
| 31 | pendant : ∀ u ∈ L ∪ R, ∃ v ∈ I, G.Adj u v ∧ |
| 32 | ∀ w ∈ S, G.Adj v w → w = u |
| 33 | |
| 34 | axiom value_eq {V : Type} [DecidableEq V] (G : SimpleGraph V) |
| 35 | (S L R I : Finset V) (h : Partition G S L R I) : |
| 36 | Grundy.value G S = g L.card R.card |
| 37 | |
| 38 | end Lax689614.Biclique |
| 39 |
Discussion
Ask a question or add context. Endorsements and structured flags are kept in the review panel above.
0 comments