Definitions/Def_CuspForm_AdelicLift.lean
Adelic lift of a weight-two cusp form on
For a natural number M, a weight-two cusp form g on \mathrm{Gamma}_0(M) and a complex-valued function \varphi on the adelic group AutomorphicForm.AdelicGL2 (𝓞 ℚ) ℚ, the predicate CuspForm.IsAdelicLiftOf g φ is the conjunction of three conditions. First, left invariance under the rational points: \varphi(\iota(\gamma)x)=\varphi(x) for all \gamma\in\mathrm{GL}_2(\mathbb{Q}) and all x, where \iota is the embedding AutomorphicForm.globalPoints. Second, right invariance under the level subgroup: for every u in NumberField.AdelicLevel.finiteLevelOne (𝓞 ℚ) ℚ (AdelicDock.ratLevel M) and every x, \varphi(x\cdot\mathrm{finEmbed}(u))=\varphi(x). Here AdelicDock.ratLevel M is the ideal of \mathcal{O}_{\mathbb{Q}} generated by M; finiteLevelOne consists of those k\in\mathrm{GL}_2 over the finite adeles for which both k and k^{-1} have all entries integral at every finite place, lower-left entry of valuation at most the bound \exp(-\operatorname{ord}_v(N)) attached to the ideal N at each place v, and lower-right entry congruent to 1 to the same bound; AdelicDock.finEmbed inserts such a k into the adelic group with trivial archimedean component. Third, the archimedean normalisation: whenever the finite part AdelicLevel.glFin (𝓞 ℚ) ℚ h is trivial and the real component LanglandsTunnell.ratArchGL2 h lies in \mathrm{GL}_2^{+}(\mathbb{R}), one has \varphi(h)=\bigl(g\mid_2 \mathrm{ratArchGL2}(h)\bigr)(i), the weight-two slash action evaluated at i in the upper half-plane; no determinant factor occurs. The three accessor lemmas left_inv, level_inv and apply_eq extract the three conjuncts. This is a predicate on a given \varphi: neither existence nor uniqueness of a lift is asserted here.
Relation to Mathlib
Mathlib supplies the classical side (CuspForm, the weight-k slash action, Matrix.GLPos, UpperHalfPlane.I) but has no notion of the adelisation of a modular form; the adelic group, the finite-adelic level subgroups finiteLevelOne and the embeddings finEmbed, globalPoints, together with the real-component map ratArchGL2, are the project's own.
Where it is used
The predicate is the interface between classical weight-two cusp forms on \Gamma_0(M) and automorphic forms on \mathrm{GL}_2 over the adeles of \mathbb{Q}, so that Hecke eigenvalues and local conductors of the associated adelic object may be used; it feeds the modularity and level-lowering steps, where modular forms produced classically must be handled adelically.
References
- D. Bump, Automorphic Forms and Representations, Cambridge Studies in Advanced Mathematics 55, Cambridge University Press, 1997, §3.1
- S. Gelbart, Automorphic Forms on Adele Groups, Annals of Mathematics Studies 83, Princeton University Press, 1975
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 50 lines
- 4 declarations
- used in the statements of 93 theorems and imported by 94 proofs
- imports 2 definition modules
Source file: Definitions/Def_CuspForm_AdelicLift.lean
Imported by
- no other definition module
Declarations
- def
CuspForm.IsAdelicLiftOf - theorem
CuspForm.IsAdelicLiftOf.left_inv - theorem
CuspForm.IsAdelicLiftOf.level_inv - theorem
CuspForm.IsAdelicLiftOf.apply_eq
Source
import Definitions.Def_LanglandsTunnell_DeltaLift import Definitions.Def_AdelicDock_LocalEmbedding set_option autoImplicit false noncomputable section namespace CuspForm variable {M : ℕ} open scoped ModularForm in def IsAdelicLiftOf (g : CuspForm (CongruenceSubgroup.Gamma0 M) 2) (φ : AutomorphicForm.AdelicGL2 (NumberField.RingOfIntegers ℚ) ℚ → ℂ) : Prop := (∀ (γ : GL (Fin 2) ℚ) (x : AutomorphicForm.AdelicGL2 (NumberField.RingOfIntegers ℚ) ℚ), φ (AutomorphicForm.globalPoints (NumberField.RingOfIntegers ℚ) ℚ γ * x) = φ x) ∧ (∀ u ∈ NumberField.AdelicLevel.finiteLevelOne (NumberField.RingOfIntegers ℚ) ℚ (AdelicDock.ratLevel M), ∀ x, φ (x * AdelicDock.finEmbed (NumberField.RingOfIntegers ℚ) ℚ u) = φ x) ∧ ∀ h : AutomorphicForm.AdelicGL2 (NumberField.RingOfIntegers ℚ) ℚ, NumberField.AdelicLevel.glFin (NumberField.RingOfIntegers ℚ) ℚ h = 1 → LanglandsTunnell.ratArchGL2 h ∈ Matrix.GLPos (Fin 2) ℝ → φ h = ((⇑g) ∣[(2 : ℤ)] LanglandsTunnell.ratArchGL2 h) UpperHalfPlane.I theorem IsAdelicLiftOf.left_inv {g : CuspForm (CongruenceSubgroup.Gamma0 M) 2} {φ : AutomorphicForm.AdelicGL2 (NumberField.RingOfIntegers ℚ) ℚ → ℂ} (hφg : IsAdelicLiftOf g φ) (γ : GL (Fin 2) ℚ) (x : AutomorphicForm.AdelicGL2 (NumberField.RingOfIntegers ℚ) ℚ) : φ (AutomorphicForm.globalPoints (NumberField.RingOfIntegers ℚ) ℚ γ * x) = φ x := hφg.1 γ x theorem IsAdelicLiftOf.level_inv {g : CuspForm (CongruenceSubgroup.Gamma0 M) 2} {φ : AutomorphicForm.AdelicGL2 (NumberField.RingOfIntegers ℚ) ℚ → ℂ} (hφg : IsAdelicLiftOf g φ) : ∀ u ∈ NumberField.AdelicLevel.finiteLevelOne (NumberField.RingOfIntegers ℚ) ℚ (AdelicDock.ratLevel M), ∀ x, φ (x * AdelicDock.finEmbed (NumberField.RingOfIntegers ℚ) ℚ u) = φ x := hφg.2.1 open scoped ModularForm in theorem IsAdelicLiftOf.apply_eq {g : CuspForm (CongruenceSubgroup.Gamma0 M) 2} {φ : AutomorphicForm.AdelicGL2 (NumberField.RingOfIntegers ℚ) ℚ → ℂ} (hφg : IsAdelicLiftOf g φ) (h : AutomorphicForm.AdelicGL2 (NumberField.RingOfIntegers ℚ) ℚ) (hfin : NumberField.AdelicLevel.glFin (NumberField.RingOfIntegers ℚ) ℚ h = 1) (hpos : LanglandsTunnell.ratArchGL2 h ∈ Matrix.GLPos (Fin 2) ℝ) : φ h = ((⇑g) ∣[(2 : ℤ)] LanglandsTunnell.ratArchGL2 h) UpperHalfPlane.I := hφg.2.2 h hfin hpos end CuspForm end
Statements phrased using this module (93)
- Nonvanishing of an adelic lift of a cusp form
CuspForm.IsAdelicLiftOf.ne_zero0 below · depth 11 - Inertia at q with q² ‖ M: principal series versus supercuspidal
CuspForm.IsNewform.exists_charpoly_inertia_eq_principalSeries_supercuspidal_of_galoisRepAdic_of_two_laws_of_irreducible_odd_of_ne_two_of_factorization_eq_two10,725 below · depth 11 - Ramified first character in a principal series at q² ∣ M
CuspForm.IsNewform.exists_mem_higherUnits_apply_ne_one_of_linearMap_psCarrier_ne_zero_of_sq_dvd57 below · depth 11 - Existence of an adelic lift of a weight-two cusp form
CuspForm.exists_isAdelicLiftOf0 below · depth 11 - Unramifiedness of the central character μ₁μ₂
CuspForm.IsAdelicLiftOf.isUnramified_mul_of_linearMap_psCarrier_ne_zero6 below · depth 12 - Inertia at a principal-series prime q with v_q(M)=2
CuspForm.IsNewform.exists_charpoly_inertia_eq_and_pow_eq_one_iff_of_linearMap_psCarrier_ne_zero_of_factorization_eq_two7,035 below · depth 12 - Inertia at q is split with a^{q-1}≠ 1
CuspForm.IsNewform.exists_charpoly_inertia_eq_and_pow_sub_one_ne_one_of_forall_linearMap_psCarrier_eq_zero_of_factorization_eq_two_of_irreducible_odd_of_ne_two6,863 below · depth 12 - Newform level equals local newvector conductor at each prime
CuspForm.IsNewform.hasNewvectorConductor_adelicSpan_factorization_of_isAdelicLiftOf46 below · depth 12 - Central K₁(qᵃ)-fixed vector inside the GL₂(ℚ_q)-span
CuspForm.IsAdelicLiftOf.exists_mem_span_fixed_padicK1_of_fixedSubmodule_padicK1_ne_bot6 below · depth 13 - Twisting a ramified-ratio principal series to K₁(qᵇ)-fixed vectors
CuspForm.IsAdelicLiftOf.exists_mem_span_fnTwist_fixed_padicK1_of_principalSeries_of_not_isUnramified_ratio11 below · depth 13 - Adelic lifts of Γ₀(M)-forms are right K₀(M)-invariant
CuspForm.IsAdelicLiftOf.levelZero_inv5 below · depth 13 - Inertia at q≠λ: principal series with unramified ratio
CuspForm.IsNewform.exists_charpoly_inertia_eq_and_pow_eq_one_iff_of_linearMap_psCarrier_ne_zero_of_isUnramified_ratio3,781 below · depth 13 - Inertial charpolys at a ramified principal-series prime, v_q(M)=2
CuspForm.IsNewform.exists_galoisRepAdic_charpoly_inertia_eq_cyclotomicCharacter_of_linearMap_psCarrier_ne_zero_of_not_isUnramified_ratio_of_factorization_eq_two6,229 below · depth 13 - Principal-series map from split tame inertia labels at q
CuspForm.IsNewform.exists_linearMap_psCarrier_ne_zero_of_charpoly_inertia_eq_of_pow_sub_one_eq_one_of_factorization_eq_two_of_irreducible_odd_of_ne_two6,836 below · depth 13 - Local type at a prime exactly squared in the level
CuspForm.IsNewform.psCarrier_lam_dvd_sub_one_or_no_psCarrier_lam_dvd_add_one_of_factorization_eq_two_of_residual_isUnipotent_of_irreducible_odd_of_absIrred_odd10,753 below · depth 13 - Level lowering at q from a K₁(qᵃ)-fixed vector
CuspForm.IsNormalizedEigenform.goodEigensystemOccursAt_of_adelicLift_of_mem_span_of_fixed43 below · depth 13 - Level lowering at q with q² ∥ L, q≡-1, supercuspidal case
WeierstrassCurve.exists_isNormalizedEigenform_level_div_of_forall_linearMap_psCarrier_eq_zero_of_cast_eq_neg_one10,757 below · depth 13 - Level reduction to L/q for a twisted newform with q² ‖ L
WeierstrassCurve.exists_isNormalizedEigenform_level_div_of_mem_fixedSubmodule_fnTwist_of_isNewform_of_factorization_eq_two798 below · depth 13 - Central K(qⁿ)-fixed vector in the local span of an adelic lift
CuspForm.IsAdelicLiftOf.exists_mem_span_fixed_gl2CongruenceSubgroup_of_fixedSubmodule_gl2CongruenceSubgroup_ne_bot9 below · depth 14 - Finite-dimensionality of qⁿ-fixed vectors in the local span
CuspForm.IsAdelicLiftOf.finite_fixedSubmodule_gl2CongruenceSubgroup_inf_span_range_padic_smul_self12 below · depth 14 - Central scalars act trivially on the K(q)-invariants
CuspForm.IsAdelicLiftOf.gl2ReductionRep_scalarElem_eq_id_of_linearMap_range_eq_span7 below · depth 14 - Both characters ramified at q forces q² ∣ M
CuspForm.IsAdelicLiftOf.sq_dvd_of_linearMap_psCarrier_ne_zero_of_not_isUnramified_of_not_isUnramified1 below · depth 14 - Ramified principal series at q with v_q(M)=2: twist of level exactly q
CuspForm.IsNewform.exists_isPrimitiveForm_adelicLiftGamma1_psCarrier_isUnramified_of_not_isUnramified_ratio_of_factorization_eq_two473 below · depth 14 - Quadratic twist lowering the q-exponent of a newform
CuspForm.IsNewform.exists_quadraticTwistToExponentOne_of_sq_dvd_of_adelicLift_principalSeries_isUnramified_ratio67 below · depth 14 - Depth zero at q when v_q(M)≤ 2
CuspForm.IsNewform.fixedSubmodule_gl2CongruenceSubgroup_one_adelicSpan_ne_bot_of_factorization_le_two47 below · depth 14 - Unipotent-fixed vectors vanish when no map to a principal series exists
CuspForm.IsNewform.gl2ReductionRep_unipotent_fixed_eq_zero_of_forall_linearMap_psCarrier_eq_zero16 below · depth 14 - Inertia labels at q given by the cuspidal type θ or θ^q
CuspForm.IsNewform.inertia_labels_eq_or_eq_pow_of_isCuspidalOfType_subrepresentation_of_irreducible_odd_of_range6,800 below · depth 14 - Twisted descent: a K₁(q)-fixed vector yields a parabolic class on Γ₁(L/q)
CuspForm.IsNormalizedEigenform.exists_H1_diamondRaw_eq_smul_heckeT_eq_smul_of_mem_fixedSubmodule_fnTwist11 below · depth 14 - Integral mod-p parabolic eigenclass at level L/q
WeierstrassCurve.exists_H1_parabolic_not_dvd_diamondRaw_heckeT_congr_apOfModel_level_div_of_forall_linearMap_psCarrier_eq_zero10,743 below · depth 14 - Central invariance of an adelic lift of a weight-two form
CuspForm.IsAdelicLiftOf.apply_centralScalar_mul6 below · depth 15 - Quadratic twist produces a K₁(q)-fixed vector with trivial central action
CuspForm.IsAdelicLiftOf.exists_mem_span_fnTwist_fixed_padicK1_one_of_principalSeries15 below · depth 15 - Principal-series characters trivial on 1+qℤ_q when v_q(M)=2
CuspForm.IsNewform.apply_eq_one_of_mem_higherUnits_one_of_factorization_eq_two_of_linearMap_psCarrier_ne_zero10 below · depth 15 - Twisting a newform to unramified principal-series character at q
CuspForm.IsNewform.exists_isPrimitiveForm_adelicLiftGamma1_psCarrier_isUnramified_of_not_isUnramified_ratio457 below · depth 15 - Unipotent-fixed vector gives a map to a principal series
CuspForm.IsNewform.exists_linearMap_psCarrier_of_gl2ReductionRep_unipotent_fixed_ne_zero15 below · depth 15 - Twisted descent: lowered-level eigenform with η-twisted coefficients
CuspForm.IsNormalizedEigenform.exists_isNormalizedEigenform_qCoeff_eq_mul_of_adelicLift_fnTwist_of_mem_span_of_fixed43 below · depth 15 - A full-level Tate datum receiving newforms and Drinfeld specialisations
FullLevelTate.exists_datum_forall_exists_eigenIsoHom_ne_bot_and_exists_drinfeldSpecialization_of_algebraMap_eq6,623 below · depth 15 - Mod p eigensystem of W on H¹ with Steinberg-quotient coefficients
WeierstrassCurve.exists_charP_rep_steinberg_quotient_isEigensystemH1_apOfModel_of_isSemistableModel_of_qCoeff_congr10,659 below · depth 15 - Multiplicity one: twisted newform lift and primitive form span
CuspForm.IsNewform.adelicSpanSubmodule_eq_of_isPrimitiveForm_adelicLiftGamma1_fnTwist408 below · depth 16 - No cuspidal type in the mod-q reduction at level q²M'
CuspForm.IsNewform.not_isCuspidalOfType_subrepresentation_gl2ReductionRep_of_dvd47 below · depth 16 - Γ₁(N) descent of a K₁(qᵃ)-fixed twisted vector
CuspForm.IsNormalizedEigenform.exists_gamma1_hasNebentypus_hecke_eigen_of_adelicLift_fnTwist_of_mem_span_of_fixed14 below · depth 16 - Full-level Tate datum: newform eigenspaces and Drinfeld specialisation
FullLevelTate.exists_datum_forall_exists_eigenIsoHom_ne_bot_and_exists_drinfeldSpecialization_of_levelAutInputs6,588 below · depth 16 - Level lowering at q² with Steinberg-quotient coefficients
WeierstrassCurve.isEigensystemH1_comp_apOfModel_of_isSemistableModel_of_qCoeff_congr_of_steinberg_quotient10,658 below · depth 16 - Descent of a K₁(qᵃ)-fixed twisted vector to Γ₁ nebentypus
CuspForm.IsAdelicLiftOf.exists_hasNebentypus_isAdelicLiftOfGamma1_of_mem_span_fnTwist_of_fixed7 below · depth 17 - Weight-two adelic lifts have archimedean type two
CuspForm.IsAdelicLiftOf.hasArchType0_archWeightCharFamily_two5 below · depth 17 - Adelic lifts of weight-two Γ₀(M) cusp forms are bounded-genuine
CuspForm.IsAdelicLiftOf.isBoundedGenuineFn_productionPinsGeneral_stdAddChar26 below · depth 17 - Nebentypus action of K₀(M) on adelic lifts of Γ₁(M)-forms
CuspForm.IsAdelicLiftOfGamma1.apply_mul_finEmbed_eq_inv_nebentypus_mul_of_mem_finiteLevelZero6 below · depth 17 - Adelic lifts of weight-two forms have archimedean type 2
CuspForm.IsAdelicLiftOfGamma1.hasArchType0_archWeightCharFamily_two5 below · depth 17 - Adelic lift of a weight-two Γ₁(M) eigenform is isotypic
CuspForm.IsEigenformWith.isIsotypicCuspFormAt_of_isAdelicLiftOfGamma137 below · depth 17 - Equivariant Hecke eigenclass attached to a newform of level Nq²
CuspForm.IsNewform.exists_H1_gammaH_dual_ne_zero_equivariant_heckeT_eq_qCoeff_smul_of_isCuspidalOfType43 below · depth 17 - Inertia at q with v_q(M)=2 is non-tame of order ∤ q-1
CuspForm.IsNewform.exists_charpoly_inertia_eq_and_pow_sub_one_ne_one_of_forall_linearMap_psCarrier_eq_zero_of_factorization_eq_two_of_irreducible_odd_of_ne_two_of_cast_eq_neg_one6,598 below · depth 17 - Cuspidal type θ for the level-zero component at q
CuspForm.IsNewform.exists_isCuspidalOfType_gl2ReductionRep_of_inertia_labels_eq_pow_of_irreducible_odd_of_cast_eq_neg_one10,520 below · depth 17 - Supercuspidal type character at q has λ-power order
CuspForm.IsNewform.ne_one_and_exists_pow_pow_eq_one_of_isCuspidalOfType_of_unipotentOnInertia_of_irreducible_odd6,546 below · depth 17 - Adelic lift of a normalised eigenform on Γ₀(M) is isotypic
CuspForm.IsNormalizedEigenform.isIsotypicCuspFormAt_one_of_isAdelicLiftOf43 below · depth 17 - Hecke eigenvalue η(varpi_ℓ)⁻¹a_ℓ(g) on the twisted adelic span
CuspForm.IsNormalizedEigenform.sum_apply_padicToAdelic_eq_mul_of_mem_span_fnTwist7 below · depth 17 - Residual H¹ eigensystem at level N from a cuspidal type
HeckeEis.isEigensystemH1_of_H1_gammaH_dual_of_isCuspidalOfType_of_qCoeff_congr47 below · depth 17 - Cuspidal type of a newform in the full-level Tate module
ModularCurve.FullLevel.exists_ringHom_heckeGen_eq_and_exists_ne_zero_comm_baseChange_tateModule_jac790 below · depth 17 - Residual irreducibility, oddness and inertial unipotence for a congruent newform
WeierstrassCurve.exists_galoisRepAdic_residual_irreducible_odd_unipotent_of_isSemistableModel_of_qCoeff_congr1,487 below · depth 17 - Level and nebentypus of a K₁(qᵃ)-fixed vector in a twisted lift
CuspForm.IsAdelicLiftOf.apply_mul_finEmbed_levelZero_eq_of_mem_span_fnTwist_of_fixed6 below · depth 18 - Realisation of the GL₂(ℚ_q)-span of an adelic lift
CuspForm.IsAdelicLiftOf.exists_realization_range_eq_span_range_padic_smul_self13 below · depth 18 - Central character of an adelic lift at a good place
CuspForm.IsAdelicLiftOfGamma1.apply_centralScalar_det_gen_mul_eq_nebentypus_mul7 below · depth 18 - Right invariance of the adelic lift under the level group
CuspForm.IsAdelicLiftOfGamma1.apply_mul_eq_of_mem_productionPinsGeneral_U0 below · depth 18 - Continuity of the adelic lift of a weight-two Γ₁(M) cusp form
CuspForm.IsAdelicLiftOfGamma1.continuous5 below · depth 18 - Adelic lifts of weight-two cusp forms are bounded-genuine
CuspForm.IsAdelicLiftOfGamma1.isBoundedGenuineFn_productionPinsGeneral_stdAddChar24 below · depth 18 - Cuspidality of the adelic lift of a weight-two cusp form
CuspForm.IsAdelicLiftOfGamma1.isCuspidalFn_productionPinsGeneral17 below · depth 18 - Classical Tₚ eigenvalue transfers to the adelic Hecke operator
CuspForm.IsAdelicLiftOfGamma1.isHeckeCosetEigenfunctionAt_productionPinsGeneral_of_heckeU_add_smul_slash_heckeDiagMatrix_eq10 below · depth 18 - K_f-smoothness of adelic lifts of weight-two cusp forms
CuspForm.IsAdelicLiftOfGamma1.isKfSmooth0 below · depth 18 - Square-integrability of a weight-two adelic lift on the production window
CuspForm.IsAdelicLiftOfGamma1.memLp_two_restrict_productionPinsGeneral5 below · depth 18 - Coefficient eigenform relations give the operator identity Uₚ h+ε(p)h|₂diag(p,1)=aₚ h
CuspForm.IsEigenformWith.heckeU_add_smul_slash_heckeDiagMatrix_eq_qCoeff_smul9 below · depth 18 - Principal series map from tame split inertia at q
CuspForm.IsNewform.exists_linearMap_psCarrier_ne_zero_of_charpoly_inertia_eq_of_pow_sub_one_eq_one_of_factorization_eq_two_of_irreducible_odd_of_ne_two_of_cast_eq_neg_one6,571 below · depth 18 - Irreducibility of the K(q)-fixed reduction representation
CuspForm.IsNewform.gl2ReductionRep_toSubmodule_eq_top_of_ne_bot_of_forall_linearMap_psCarrier_eq_zero533 below · depth 18 - Inertia labels at q given by a cuspidal type θ
CuspForm.IsNewform.inertia_labels_eq_or_eq_pow_of_isCuspidalOfType_subrepresentation_of_irreducible_odd_of_range_of_cast_eq_neg_one6,535 below · depth 18 - No equivariant map to a principal series at q when q² ‖ M
CuspForm.IsNewform.linearMap_psCarrier_eq_zero_of_charpoly_inertia_eq_mul_of_eq_pow_of_pow_sub_one_ne_one_exponent_two7,036 below · depth 18 - Normalised Γ₀(N) eigenform as trivial-nebentypus Γ₁(N) eigenform
CuspForm.IsNormalizedEigenform.isEigenformWith_one_of_coe_eq2 below · depth 18 - A Γ₀(M) cusp form as a Γ₁(M) form with trivial nebentypus
CuspForm.exists_gamma1_coe_eq_and_hasNebentypus_one0 below · depth 18 - Newform eigensystem in H¹ with dual cuspidal-type coefficients
HeckeEis.exists_coeffH1_dual_ne_zero_isCoeffHeckeOnH1_eq_qCoeff_smul_of_isCuspidalOfType42 below · depth 18 - Newform K(q)-invariants embed into the dual Tate module
ModularCurve.FullLevel.exists_injective_dual_baseChange_tateModule_jac_of_isNewform_of_range_eq_span613 below · depth 18 - Component at u of a k-translate is F∣₂γ⁻¹
CuspForm.IsAdelicLiftOf.apply_mul_padicToAdelic_diagOne_mul_eq_slash_inv_slash_of_component0 below · depth 19 - Vanishing of a K(q)-fixed vector in the span of an adelic lift
CuspForm.IsAdelicLiftOf.eq_zero_of_forall_apply_mul_padicToAdelic_diagOne_eq_zero_of_mem_span_of_mem_fixedSubmodule6 below · depth 19 - Classical components at full level q of adelic span vectors
CuspForm.IsAdelicLiftOf.exists_cuspForm_gamma_inf_gamma0_apply_mul_padicToAdelic_diagOne_eq_slash_of_mem_span_of_mem_fixedSubmodule6 below · depth 19 - Hecke action on full-level components of an adelic newform
CuspForm.IsAdelicLiftOf.heckeTLinH_eq_qCoeff_smul_of_components_of_isNewform19 below · depth 19 - Adelic lifts are left-invariant under rational unipotents
CuspForm.IsAdelicLiftOfGamma1.apply_unipotentGL2_algebraMap_mul0 below · depth 19 - Adelic lifts of weight-two cusp forms are C² along the unipotent line
CuspForm.IsAdelicLiftOfGamma1.contDiff_two_unipotentGL2_ratArchLine_mul5 below · depth 19 - Unipotent line through an integral point: adelic lift equals a slash of h
CuspForm.IsAdelicLiftOfGamma1.exists_forall_apply_unipotentGL2_add_ratArchLine_mul_eq_slash_apply_I5 below · depth 19 - Boundedness of the adelic lift of a weight-two cusp form
CuspForm.IsAdelicLiftOfGamma1.exists_forall_norm_le5 below · depth 19 - Cuspidal K(q)-type of a newform inside H¹(Γ_H(Nq²),ℂ)
CuspForm.IsNewform.exists_linearMap_fixedSubmodule_H1_gammaH_laws_of_isCuspidalOfType36 below · depth 19 - Irreducibility of the local representation realised in the adelic span
CuspForm.IsNewform.isIrreducibleGLRep_of_linearMap_range_eq_span_padic_smul_self496 below · depth 19 - Full-level Tate datum with Drinfeld specialisation when q≡-1 mod λ
FullLevelTate.exists_datum_forall_exists_eigenIsoHom_ne_bot_and_exists_drinfeldSpecialization_of_algebraMap_eq_of_ne_two_of_cast_eq_neg_one6,358 below · depth 19 - Components of K(q)-fixed vectors as linear families of cusp forms
CuspForm.IsAdelicLiftOf.exists_linearMap_components_of_fixedSubmodule_of_range_eq_span10 below · depth 20 - Adelic Hecke sum at a good prime equals a_ℓ(g)
CuspForm.IsAdelicLiftOf.sum_toFn_mul_eq_qCoeff_mul_of_mem_span_of_isHeckeCosetSystem10 below · depth 20 - Adelic lift of a Γ₁(M) cusp form on γ x u
CuspForm.IsAdelicLiftOfGamma1.apply_globalPoints_mul_mul_eq_slash_ratArchGL2_apply_I0 below · depth 20 - Adelic lift of a weight-two newform as genuine cuspidal realization
CuspForm.IsNewform.exists_isGenuineCuspRealizationAt_productionPinsOf_toFun_eq_of_isAdelicLiftOf63 below · depth 20 - Local newvectors from a newform span at most a line
CuspForm.IsNewform.exists_smul_add_smul_eq_zero_of_mem_span_of_mem_fixedSubmodule_padicK1_of_centralGL_smul_eq116 below · depth 20 - Existence of a full-level Tate datum with Drinfeld specialisation
FullLevelTate.exists_datum_forall_exists_eigenIsoHom_ne_bot_and_exists_drinfeldSpecialization_of_levelAutInputs_of_ne_two_of_cast_eq_neg_one6,323 below · depth 20