All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

F₄ S action

f₄_S_action

Plain-language statement

f₄ transforms under S as f₄|S = -f₂. Proof outline (symmetric to f₂_S_action): 1. (serre_D 2 H₄)|[4]S = serre_D 2 (H₄|[2]S) = serre_D 2 (-H₂) = -serre_D 2 H₂ 2. (H₄(2H₂ + H₄))|[4]S = (-H₂)(2(-H₄) + (-H₂)) = H₂(H₂ + 2H₄) 3. f₄|[4]S = -serre_D 2 H₂ + (1/6)H₂(H₂ + 2H₄) = -f₂

Exact Lean statement

lemma f₄_S_action : (f₄ ∣[(4 : ℤ)] S) = -f₂

Formal artifact

Lean source

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

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