All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Theta h T action

theta_h_T_action

Plain-language statement

h is invariant under T. Proof: Under T: f₂ ↦ -f₂, f₄ ↦ f₃ = f₂ + f₄ h|T = (-f₂)² + (-f₂)(f₂ + f₄) + (f₂ + f₄)² = f₂² - f₂² - f₂f₄ + f₂² + 2f₂f₄ + f₄² = f₂² + f₂f₄ + f₄² = h

Exact Lean statement

lemma theta_h_T_action : (theta_h ∣[(8 : ℤ)] T) = theta_h

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma theta_h_T_action : (theta_h ∣[(8 : )] T) = theta_h := by  -- Under T: f₂ ↦ -f₂, f₄ ↦ f₃ = f₂ + f₄  -- (f₂²)|T = f₂², (f₄²)|T = (f₂+f₄)², (f₂f₄)|T = (-f₂)(f₂+f₄)  have h_f₂_sq : ((f₂ ^ 2) ∣[(8 : )] T) = f₂ ^ 2 := by    have hmul := mul_slash_SL2 4 4 T f₂ f₂    simp only [f₂_T_action] at hmul    convert hmul using 1 <;> ext <;> simp [sq]  have h_f₄_sq : ((f₄ ^ 2) ∣[(8 : )] T) = (f₂ + f₄) ^ 2 := by    have hmul := mul_slash_SL2 4 4 T f₄ f₄    simp only [f₄_T_action] at hmul    convert hmul using 1    · ext; simp [sq]    · ext z; simp only [Pi.pow_apply, Pi.mul_apply, sq]      rw [(congrFun f₂_add_f₄_eq_f₃ z).symm, Pi.add_apply]  have h_f₂f₄ : ((f₂ * f₄) ∣[(8 : )] T) = (-f₂) * (f₂ + f₄) := by    have hmul := mul_slash_SL2 4 4 T f₂ f₄    simp only [f₂_T_action, f₄_T_action] at hmul    simpa [show (4 : ) + 4 = 8 by norm_num,  f₂_add_f₄_eq_f₃] using hmul  -- h|T = f₂² + (-f₂)(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, Pi.neg_apply, sq]  ring
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/JacobiTheta/Derivative.lean:385-407

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

Project-declaredLean 4.31.0

Anti Der Pos

antiDerPos

Plain-language statement

If FF is a modular form where F(it)F(it) is positive for sufficiently large tt (i.e. constant term is positive) and the derivative is positive, then FF is also positive.

sphere packingFourier analysismodular forms

Source project: Sphere Packing in Dimension 8

Person-level attribution pending.

View proof record
Project-declaredLean 4.31.0

Anti Serre Der Pos

antiSerreDerPos

Plain-language statement

Let F:HCF : \mathbb{H} \to \mathbb{C} be a holomorphic function where F(it)F(it) is real for all t>0t > 0. Assume that Serre derivative kF\partial_k F is positive on the imaginary axis. If F(it)F(it) is positive for sufficiently large tt, then F(it)F(it) is positive for all t>0t > 0.

sphere packingFourier analysismodular forms

Source project: Sphere Packing in Dimension 8

Person-level attribution pending.

View proof record