feat: add Darboux's theorem eval problem#288
Open
kim-em wants to merge 1 commit into
Open
Conversation
This PR adds Darboux's theorem (§39 of Knill's "Some Fundamental Theorems
in Mathematics") as a new eval problem: every symplectic form on an open
U ⊆ ℝ^{2n} is locally symplectomorphic to the standard symplectic form
ω₀ = ∑_i dxᵢ ∧ dx_{n+i}. Mathlib has all the supporting differential-form
infrastructure but no symplectic forms, ω₀, or Darboux theorem; no
formalization was found in any other proof assistant.
Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
This PR adds Darboux's theorem as a new lean-eval challenge problem — §39 of Oliver Knill's Some Fundamental Theorems in Mathematics.
Every symplectic form on an open
U ⊆ ℝ^{2n}is locally symplectomorphic to the standard symplectic formω₀ = ∑_{i=1}^n dxᵢ ∧ dx_{n+i}.The local content lives entirely on open subsets of
ℝ^{2n}, so the theorem is formalized against mathlib's normed-space differential-form machinery — continuous alternating maps, the exterior derivativeextDeriv, alternating-form pullback, andOpenPartialHomeomorph. mathlib has all the supporting infrastructure but no symplectic forms, noω₀, and no Darboux theorem (Analysis/Calculus/Darboux.leanis the unrelated derivative-IVT theorem). The Challenge ships two auxiliary definitions,IsDarbouxNormalandIsSymplecticOn. A search found no formalization of Darboux's theorem in any other proof assistant.🤖 Prepared with Claude Code