Plain-language statement
h is invariant under S. Proof: h = f₂² + f₂f₄ + f₄² Under S: f₂|[4]S = -f₄, f₄|[4]S = -f₂ Using mul_slash_SL2: (f₂²)|[8]S = (f₂|[4]S)² = (-f₄)² = f₄² (f₂f₄)|[8]S = (f₂|[4]S)(f₄|[4]S) = (-f₄)(-f₂) = f₂f₄ (f₄²)|[8]S = (f₄|[4]S)² = (-f₂)² = f₂² So h|[8]S = f₄² + f₂f₄ + f₂² = f₂² + f₂f₄ + f₄² = h
Exact Lean statement
lemma theta_h_S_action : (theta_h ∣[(8 : ℤ)] S) = theta_h
Formal artifact
Lean source
lemma theta_h_S_action : (theta_h ∣[(8 : ℤ)] S) = theta_h := by -- Under S: f₂ ↦ -f₄, f₄ ↦ -f₂ -- (f₂²)|S = f₄², (f₄²)|S = f₂², (f₂f₄)|S = f₂f₄ have h_f₂_sq : ((f₂ ^ 2) ∣[(8 : ℤ)] S) = f₄ ^ 2 := by have hmul := mul_slash_SL2 4 4 S f₂ f₂ simp only [f₂_S_action] at hmul convert hmul using 1 <;> ext <;> simp [sq] have h_f₄_sq : ((f₄ ^ 2) ∣[(8 : ℤ)] S) = f₂ ^ 2 := by have hmul := mul_slash_SL2 4 4 S f₄ f₄ simp only [f₄_S_action] at hmul convert hmul using 1 <;> ext <;> simp [sq] have h_f₂f₄ : ((f₂ * f₄) ∣[(8 : ℤ)] S) = f₂ * f₄ := by have hmul := mul_slash_SL2 4 4 S f₂ f₄ simp only [f₂_S_action, f₄_S_action] at hmul simpa [show (4 : ℤ) + 4 = 8 by norm_num, mul_comm] using hmul -- h|S = f₄² + f₂f₄ + f₂² = h simp only [theta_h, add_slash, h_f₂_sq, h_f₂f₄, h_f₄_sq] ext z simp only [Pi.add_apply, Pi.mul_apply, sq] ring- Project
- Sphere Packing in Dimension 8
- License
- Apache-2.0
- Commit
- acfc6204e65a
- Source
- SpherePacking/ModularForms/JacobiTheta/Derivative.lean:358-377
Reuse this declaration
Bring the exact result into your workflow
The import identifies the source module. Your project still needs the pinned package dependency shown on this page.
What this badge means
This completion status comes from the project or community source. It has not yet been represented here as an independent rebuild and axiom audit.
Continue in this project
Related declarations
Anti Der Pos
antiDerPos
Plain-language statement
If is a modular form where is positive for sufficiently large (i.e. constant term is positive) and the derivative is positive, then is also positive.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Anti Serre Der Pos
antiSerreDerPos
Plain-language statement
Let be a holomorphic function where is real for all . Assume that Serre derivative is positive on the imaginary axis. If is positive for sufficiently large , then is positive for all .
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.
Closed Ball center subset upper Half Plane
closedBall_center_subset_upperHalfPlane
Plain-language statement
Closed ball centered at z with radius z.im/2 is contained in the upper half plane.
Source project: Sphere Packing in Dimension 8
Person-level attribution pending.