All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

F₂ T action

f₂_T_action

Plain-language statement

f₂ transforms under T as f₂|T = -f₂. Proof outline: 1. (serre_D 2 H₂)|[4]T = serre_D 2 (H₂|[2]T) = serre_D 2 (-H₂) = -serre_D 2 H₂ 2. (H₂(H₂ + 2H₄))|[4]T = (-H₂)((-H₂) + 2H₃) Using Jacobi H₃ = H₂ + H₄: -H₂ + 2H₃ = -H₂ + 2(H₂ + H₄) = H₂ + 2H₄ So: (H₂(H₂ + 2H₄))|[4]T = (-H₂)(H₂ + 2H₄) 3. f₂|[4]T = -serre_D 2 H₂ - (1/6)(-H₂)(H₂ + 2H₄) = -serre_D 2 H₂ + (1/6)...

Exact Lean statement

lemma f₂_T_action : (f₂ ∣[(4 : ℤ)] T) = -f₂

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma f₂_T_action : (f₂ ∣[(4 : )] T) = -f₂ := by  -- Step 1: (serre_D 2 H₂)|[4]T = -serre_D 2 H₂ (via equivariance)  have h_serre_term : (serre_D (2 : ) H₂ ∣[(4 : )] T) = -serre_D (2 : ) H₂ := by    rw [show (4 : ) = 2 + 2 from rfl,        serre_D_slash_equivariant (2 : ) H₂ H₂_SIF_MDifferentiable T, H₂_T_action]    simpa using serre_D_smul 2 (-1) H₂ H₂_SIF_MDifferentiable  -- Step 2: (H₂ + 2•H₄)|[2]T = H₂ + 2•H₄ using Jacobi: H₃ = H₂ + H₄  -- -H₂ + 2H₃ = -H₂ + 2(H₂ + H₄) = H₂ + 2H₄  have h_lin_comb : ((H₂ + (2 : ℂ) • H₄) ∣[(2 : )] T) = H₂ + (2 : ℂ) • H₄ := by    rw [add_slash, SL_smul_slash, H₂_T_action, H₄_T_action]    ext z; simp only [Pi.add_apply, Pi.smul_apply, Pi.neg_apply, smul_eq_mul]    simp only [show H₃ z = H₂ z + H₄ z by rw [ Pi.add_apply, (congrFun jacobi_identity z).symm]]    ring  -- Step 3: Product (H₂ * (H₂ + 2•H₄))|[4]T = (-H₂) * (H₂ + 2•H₄)  have h_prod : ((H₂ * (H₂ + (2 : ℂ) • H₄)) ∣[(4 : )] T) = -H₂ * (H₂ + (2 : ℂ) • H₄) := by    rw [show (4 : ) = 2 + 2 from rfl, mul_slash_SL2 2 2 T _ _, H₂_T_action, h_lin_comb]  -- Combine: f₂|[4]T = -serre_D 2 H₂ - (1/6)(-H₂)(H₂ + 2H₄) = -f₂  rw [f₂_decompose, add_slash, SL_smul_slash, h_serre_term, h_prod]  ext z; simp only [Pi.add_apply, Pi.smul_apply, Pi.neg_apply, Pi.mul_apply, smul_eq_mul]; ring
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/JacobiTheta/Derivative.lean:191-209

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