All proofs
Project-declaredLean 4.31.0 · mathlib@fabf563a7c95

Serre DE₂ slash invariant

serre_DE₂_slash_invariant

Plain-language statement

The Serre derivative of E₂ is weight-4 slash-invariant. This requires explicit computation since E₂ is not modular. Proof strategy: Write serre_D 1 E₂ = serre_D 2 E₂ + (1/12) E₂². Then: - (serre_D 2 E₂) ∣[4] γ = serre_D 2 (E₂ ∣[2] γ) by serre_D_slash_equivariant - E₂ ∣[2] γ = E₂ - α D₂ γ where α = 1/(2ζ(2)) = 3/π² - (E₂²) ∣[4] γ = (E₂ ∣[2] γ)² After e...

Exact Lean statement

lemma serre_DE₂_slash_invariant (γ : SL(2, ℤ)) :
    (serre_D 1 E₂) ∣[(4 : ℤ)] γ = serre_D 1 E₂

Formal artifact

Lean source

Canonical source
Full Lean sourceLean 4
lemma serre_DE₂_slash_invariant (γ : SL(2, )) :    (serre_D 1 E₂) ∣[(4 : )] γ = serre_D 1 E₂ := by  have hserre12 : serre_D 1 E₂ = serre_D 2 E₂ + (1 / 12 : ℂ) • (E₂ * E₂) := by    ext z; simp only [serre_D, Pi.add_apply, Pi.smul_apply, Pi.mul_apply, smul_eq_mul]; ring  have hequiv := serre_D_slash_equivariant 2 E₂ E₂_holo' γ  have hE₂slash := E₂_slash_transform γ  have hprod := ModularForm.mul_slash_SL2 (2 : ) (2 : ) γ E₂ E₂  ext z  rw [hserre12]  simp only [SlashAction.add_slash, Pi.add_apply, ModularForm.SL_smul_slash, Pi.smul_apply,    smul_eq_mul]  rw [show (serre_D 2 E₂ ∣[(4 : )] γ) z = serre_D 2 (E₂ ∣[(2 : )] γ) z by        simpa using congrFun hequiv z,      show ((E₂ * E₂) ∣[(4 : )] γ) z = (E₂ ∣[(2 : )] γ) z * (E₂ ∣[(2 : )] γ) z by        simpa using congrFun hprod z]  set α := (1 : ℂ) / (2 * riemannZeta 2) with hα_def  have hE₂slash_fun : (E₂ ∣[(2 : )] γ) = E₂ - α • D₂ γ := by    ext w; simpa using congrFun hE₂slash w  rw [hE₂slash_fun]  simp only [Pi.sub_apply, Pi.smul_apply, smul_eq_mul]  have hD_lin : D (E₂ - α • D₂ γ) z = D E₂ z - α * D (D₂ γ) z := by    have hαD₂ := (MDifferentiable_D₂ γ).const_smul α    simp only [D_sub E₂ _ E₂_holo' hαD₂, D_smul α _ (MDifferentiable_D₂ γ),               Pi.sub_apply, Pi.smul_apply, smul_eq_mul]  simp only [serre_D, Pi.sub_apply, Pi.mul_apply, Pi.smul_apply, smul_eq_mul]  rw [hD_lin, D_D₂ γ z]  have hα_val : α = 3 / π^2 := by simp only [hα_def, riemannZeta_two]; field_simp; ring  have hpi_ne : (π : ℂ)  0 := Complex.ofReal_ne_zero.mpr Real.pi_ne_zero  rw [show D₂ γ z = (2 * π * I *1 0 : ℂ)) / denom γ z from rfl, hα_val]  field_simp [UpperHalfPlane.denom_ne_zero γ z, hpi_ne]  ring_nf  simp only [Complex.I_sq]  ring
Project
Sphere Packing in Dimension 8
License
Apache-2.0
Commit
acfc6204e65a
Source
SpherePacking/ModularForms/SerreDerivativeSlash.lean:80-112

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