All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Theta g T action

theta_g_T_action

Plain-language statement

g is invariant under T. Proof: Under T: H₂ ↦ -H₂, H₄ ↦ H₃, f₂ ↦ -f₂, f₄ ↦ f₃ = f₂ + f₄ g|T = (2(-H₂) + H₃)(-f₂) + ((-H₂) + 2H₃)(f₂ + f₄) Using Jacobi: H₃ = H₂ + H₄, simplifies to g.

Exact Lean statement

lemma theta_g_T_action : (theta_g ∣[(6 : ℤ)] T) = theta_g

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma theta_g_T_action : (theta_g ∣[(6 : )] T) = theta_g := by  -- Under T: H₂ → -H₂, H₄ → H₃, f₂ → -f₂, f₄ → f₃  -- Linear combination transforms: (2•H₂ + H₄)|T = -2•H₂ + H₃, (H₂ + 2•H₄)|T = -H₂ + 2•H₃  have h_2H₂_H₄ : (((2 : ℂ) • H₂ + H₄) ∣[(2 : )] T) = -(2 : ℂ) • H₂ + H₃ := by    simp only [add_slash, SL_smul_slash, H₂_T_action, H₄_T_action, smul_neg]    ext z    simp only [Pi.add_apply, Pi.smul_apply, Pi.neg_apply, smul_eq_mul]    ring  have h_H₂_2H₄ : ((H₂ + (2 : ℂ) • H₄) ∣[(2 : )] T) = -H₂ + (2 : ℂ) • H₃ := by    simp only [add_slash, SL_smul_slash, H₂_T_action, H₄_T_action]  -- Product transforms  have h_term1 : ((((2 : ℂ) • H₂ + H₄) * f₂) ∣[(6 : )] T) = (-(2 : ℂ) • H₂ + H₃) * (-f₂) := by    have hmul := mul_slash_SL2 2 4 T ((2 : ℂ) • H₂ + H₄) f₂    simp only [h_2H₂_H₄, f₂_T_action] at hmul    exact hmul  have h_term2 : (((H₂ + (2 : ℂ) • H₄) * f₄) ∣[(6 : )] T) = (-H₂ + (2 : ℂ) • H₃) * f₃ := by    have hmul := mul_slash_SL2 2 4 T (H₂ + (2 : ℂ) • H₄) f₄    simp only [h_H₂_2H₄, f₄_T_action] at hmul    exact hmul  -- Combine and simplify using Jacobi: H₃ = H₂ + H₄, f₃ = f₂ + f₄  simp only [theta_g, add_slash, h_term1, h_term2]  ext z; simp only [Pi.add_apply, Pi.mul_apply, Pi.smul_apply, Pi.neg_apply, smul_eq_mul]  rw [(congrFun jacobi_identity z).symm, (congrFun f₂_add_f₄_eq_f₃ z).symm]  simp only [Pi.add_apply]; ring
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/JacobiTheta/Derivative.lean:325-348

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