-
Notifications
You must be signed in to change notification settings - Fork 198
feat: Latin Tableau Conjecture #1385
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
tchow12000-coder
wants to merge
15
commits into
google-deepmind:main
Choose a base branch
from
tchow12000-coder:latintableau
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
+74
−0
Open
Changes from all commits
Commits
Show all changes
15 commits
Select commit
Hold shift + click to select a range
bf96135
Added Latin Tableau Conjecture
tchow12000-coder 44b2b34
Implemented Paul-Lez's suggested edits
tchow12000-coder 1ebfb48
Added the definition of independenceNumK to Coloring.lean
tchow12000-coder 90fc430
Update FormalConjectures/ForMathlib/Combinatorics/SimpleGraph/Colorin…
tchow12000-coder 8df1e43
Update FormalConjectures/ForMathlib/Combinatorics/SimpleGraph/Colorin…
tchow12000-coder e3a1992
Update FormalConjectures/ForMathlib/Combinatorics/SimpleGraph/Colorin…
tchow12000-coder b85f072
Update FormalConjectures/Paper/LatinTableau.lean
tchow12000-coder 9c81d24
Update FormalConjectures/Paper/LatinTableau.lean
tchow12000-coder c1fd014
Update FormalConjectures/Paper/LatinTableau.lean
tchow12000-coder eaeb508
Update FormalConjectures/Paper/LatinTableau.lean
tchow12000-coder 5e5f89d
Fixed conflicts in LatinTableau.lean
tchow12000-coder 34bc307
Update FormalConjectures/Paper/LatinTableau.lean
tchow12000-coder 4cbe4cb
Update FormalConjectures/Paper/LatinTableau.lean
tchow12000-coder 0bf3088
Update FormalConjectures/Paper/LatinTableau.lean
tchow12000-coder cdbd08e
Moved some definitions to ForMathlib
tchow12000-coder File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
15 changes: 15 additions & 0 deletions
15
FormalConjectures/ForMathlib/Combinatorics/YoungDiagram.lean
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,15 @@ | ||
| open YoungDiagram | ||
|
|
||
| def YoungDiagram.Cell (μ : YoungDiagram) : Type := μ.cells | ||
|
|
||
| instance (μ : YoungDiagram) : Fintype μ.Cell := | ||
| inferInstanceAs (Fintype μ.cells) | ||
|
|
||
| instance (μ : YoungDiagram) : DecidableEq μ.Cell := | ||
| inferInstanceAs (DecidableEq μ.cells) | ||
|
|
||
| /-- The simple graph of a Young diagram: two distinct cells are | ||
| adjacent iff they lie in the same row or in the same column. -/ | ||
| def YoungDiagram.toSimpleGraph (μ : YoungDiagram) : SimpleGraph (YoungDiagram.Cell μ) := | ||
| SimpleGraph.fromRel fun a b => | ||
| (Prod.fst a.val = Prod.fst b.val) ∨ (Prod.snd a.val = Prod.snd b.val) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,46 @@ | ||
| /- | ||
| Copyright 2025 The Formal Conjectures Authors. | ||
|
|
||
| Licensed under the Apache License, Version 2.0 (the "License"); | ||
| you may not use this file except in compliance with the License. | ||
| You may obtain a copy of the License at | ||
|
|
||
| https://www.apache.org/licenses/LICENSE-2.0 | ||
|
|
||
| Unless required by applicable law or agreed to in writing, software | ||
| distributed under the License is distributed on an "AS IS" BASIS, | ||
| WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
| See the License for the specific language governing permissions and | ||
| limitations under the License. | ||
| -/ | ||
|
|
||
| import FormalConjectures.Util.ProblemImports | ||
| import FormalConjectures.ForMathlib.Combinatorics.YoungDiagram | ||
|
|
||
| /-! | ||
| # Latin Tableau Conjecture | ||
|
|
||
| The Latin Tableau Conjecture states that the graph associated | ||
| to any (finite) Young diagram (i.e., whose vertices are the | ||
| cells of the diagram, with edges between cells in the same row | ||
| or column) is CDS-colorable, meaning that there exists a proper | ||
| coloring of the vertices of the graph such that for all k > 0, the | ||
| number of vertices with color < k equals the maximum size of | ||
| the union of k independent sets of the graph. | ||
|
|
||
| *References:* | ||
|
|
||
| * [The Latin Tableau Conjecture](https://www.combinatorics.org/ojs/index.php/eljc/article/view/v32i2p48) | ||
| -/ | ||
|
|
||
| namespace LatinTableau | ||
|
|
||
| variable {α : Type*} [DecidableEq α] | ||
|
|
||
| namespace SimpleGraph | ||
|
|
||
| /-- The Latin Tableau Conjecture: If G is the simple graph | ||
| of a Young diagram, then G is CDSColorable. -/ | ||
| @[category research open, AMS 5] | ||
| theorem LatinTableauConjecture (μ : YoungDiagram) : | ||
| (YoungDiagram.toSimpleGraph μ).CDSColorable := by sorry | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.