feat(Papers): Add Monochromatic Quantum Graph conjectures#2385
feat(Papers): Add Monochromatic Quantum Graph conjectures#2385Paul-Lez merged 8 commits intogoogle-deepmind:mainfrom
Conversation
|
Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA). View this failed invocation of the CLA check for more information. For the most up to date status, view the checks section at the bottom of the pull request. |
I believe this is fixed by now, let me know if i need to do something in addition here. |
Paul-Lez
left a comment
There was a problem hiding this comment.
Thanks for the contribution, this looks pretty cool! A few initial comments:)
Thank you! Please note i only started with Lean a few days ago, and use GPT 5.2 Pro. I can read the code and verify that -- as far as i understand it -- it makes sense. The test solutions further strengthen my conviction that its right, but i certianly cannot verify it in full generality. Thus it would be helpful to check carefully whether the defitions (especially of the PMs and its sum) are really solid. Thank you! |
|
@MarioKrenn6240 A PR is a normally limited to one problem at a time (to reduce reviewing scope), unless the problems are closely related and use the same definitions. You can open 2 new PRs for the 13 and 35 problem and also link the corresponding issue in the new PR then :) |
|
@MarioKrenn6240 I think the initial content of this PR (minus the extra files you added) is good to go - happy to merge once you move the extra files to other PRs:) |
Oh i am sorry, these files got accidentally added to this PR too while i made the other two PRs. Sorry, just fixed it. Great the file is now ready to merge. Thank you! |
Paul-Lez
left a comment
There was a problem hiding this comment.
LGTM. Could you add the changes (a few style nits) I pushed to https://github.com/google-deepmind/formal-conjectures/tree/MarioKrenn6240/main ?
Perfect, i integrated them. Thanks for going through everything again! |
|
Should merge automatically once CI has finished running:) |
Summary
This PR adds a formalization of the monochromatic quantum graph / perfect-matching equation system problem (see #2205) in the
formal-conjecturesstyle. The problem is motivated by quantum-optics constructions of high-dimensional multipartite GHZ-type states via linear optics, where interference amplitudes can be expressed as weighted sums over perfect matchings.The setup uses a complete graph
K_Nwhose edges carry both (i) endpoint “color indices” inFin Dand (ii) a coefficient/weight. For each vertex assignmentι : V N → Fin D, we define a perfect-matching sumpmSumN N D W ι(sum over perfect matchings, each contributing the product of its induced edge weights). The equation systemEqSystemN N D Wenforces:pmSumN ... ι = 1iffιis constant (monochromatic inherited vertex coloring),pmSumN ... ι = 0otherwise.This yields exponentially many constraints in
Non onlyO(N^2)edge variables, matching the combinatorial formulation in the MathOverflow reference above.What this PR contains
Core definitions:
EdgeN,WeightsN)pmSumN)EqSystemN)Verified “sanity check” solutions (explicit witnesses):
N = 4, D = 2N = 4, D = 3N = 6, D = 2Open conjectures stating non-existence over several coefficient domains:
ℂ,ℝ,ℤ, and integer weights restricted to{ -1, 0, 1 }Recorded non-existence results over
ℝ≥0attributed to Bogdanov’s lemma (asresearch solved, proof omitted)All general statements are restricted to even
N, since oddNadmits no perfect matchings.Selected references:
Tags
Open problems are tagged
@[category research open, AMS 05 14 81]and the recorded Bogdanov statements are tagged@[category research solved, AMS 05 14 81].Closes #2205. Assisted by GPT 5.2 Pro.