Wirtinger data for the two mixed-period test functions
OpenMTT.Cohomology.mixed_period_test_functions_wirtinger_datacomplex-analysismodular-formsperiods
Let , with , and suppose that the mixed differential
has a -equivariant primitive with polynomial growth in every cusp chart. For any finite set , there are two scalar test functions satisfying the weight-two antiholomorphic automorphy law, rapid decay at every cusp, and integrability of their Wirtinger derivatives on every tile for . Their derivatives are
This packages the differential and cusp-estimate hypotheses needed to apply Stokes' theorem to both Hodge types.
Retired. The original statement could not use the correctly stated tile-integrability input because it omitted the necessary positive-level hypothesis . Use MTT.Cohomology.mixed_period_test_functions_wirtinger_data_of_pos_level instead.
Preamble
import Definitions.Def_MTT_PeriodPairing import Mathlib.NumberTheory.ModularForms.Bounds set_option autoImplicit false noncomputable section open UpperHalfPlane MeasureTheory open scoped MatrixGroups Modular ComplexConjugate open MTT.Cohomology
Formal statement
theorem MTT.Cohomology.mixed_period_test_functions_wirtinger_data
{N k : ℕ} (hk : 2 ≤ k)
(g v q : CuspForm (MTT.GammaOne N) (k : ℤ))
(U : ℂ → Binary ℂ) (hU : IsMixedPeriodPrimitive g v U)
(R : Finset (Matrix.SpecialLinearGroup (Fin 2) ℤ)) :
∃ A₁ A₂ : ℂ → ℂ,
ContDiffOn ℝ 1 A₁ upperHalfPlaneSet ∧
(∀ γ ∈ CongruenceSubgroup.Gamma1 N, ∀ τ : ℍ,
A₁ ((γ • τ : ℍ) : ℂ) =
(starRingEnd ℂ (denom γ τ)) ^ 2 * A₁ τ) ∧
(∀ σ : Matrix.SpecialLinearGroup (Fin 2) ℤ, IsZeroAtImInfty
fun τ : ℍ ↦ A₁ ((σ • τ : ℍ) : ℂ) *
((starRingEnd ℂ (denom σ τ)) ^ 2)⁻¹) ∧
(∀ σ ∈ R, IntegrableOn
(fun z ↦ (1 / 2 : ℂ) *
(fderiv ℝ A₁ z 1 - Complex.I * fderiv ℝ A₁ z Complex.I))
((fun τ : ℍ ↦ ((σ • τ : ℍ) : ℂ)) '' 𝒟) volume) ∧
(∀ z : ℍ,
(1 / 2 : ℂ) *
(fderiv ℝ A₁ z 1 - Complex.I * fderiv ℝ A₁ z Complex.I) =
periodContraction (k - 2)
(g z • periodPower (k - 2) (z : ℂ))
(conj (q z) • periodPower (k - 2) (conj (z : ℂ)))) ∧
ContDiffOn ℝ 1 A₂ upperHalfPlaneSet ∧
(∀ γ ∈ CongruenceSubgroup.Gamma1 N, ∀ τ : ℍ,
A₂ ((γ • τ : ℍ) : ℂ) =
(starRingEnd ℂ (denom γ τ)) ^ 2 * A₂ τ) ∧
(∀ σ : Matrix.SpecialLinearGroup (Fin 2) ℤ, IsZeroAtImInfty
fun τ : ℍ ↦ A₂ ((σ • τ : ℍ) : ℂ) *
((starRingEnd ℂ (denom σ τ)) ^ 2)⁻¹) ∧
(∀ σ ∈ R, IntegrableOn
(fun z ↦ (1 / 2 : ℂ) *
(fderiv ℝ A₂ z 1 - Complex.I * fderiv ℝ A₂ z Complex.I))
((fun τ : ℍ ↦ ((σ • τ : ℍ) : ℂ)) '' 𝒟) volume) ∧
(∀ z : ℍ,
(1 / 2 : ℂ) *
(fderiv ℝ A₂ z 1 - Complex.I * fderiv ℝ A₂ z Complex.I) =
-conj (periodContraction (k - 2)
(q z • periodPower (k - 2) (z : ℂ))
(conj (v z) • periodPower (k - 2) (conj (z : ℂ))))) := by sorrySource
Columbia Spring 2021 modular-forms seminar notes, Week 4–5, §1.2, proof of Theorem 1, pp. 7–10, https://www.math.columbia.edu/~dmarcil/Seminars/2021_Spring/Notes/Week4-5.pdf; the two test contractions are the standard invariant-contraction/Stokes construction.