Definitions/Def_AutomorphicForm_CarrierPins.lean
Carrier pins: ambient data for adelic automorphic forms
For a number field F with ring of integers \mathcal{O}_F, adele ring \mathbb{A}_F and G = AdelicGL2 (𝓞 F) F, the structure AutomorphicForm.CarrierPins F bundles eight pieces of ambient data that the analytic clauses in a definition of an adelic automorphic form on \mathrm{GL}_2 quantify over implicitly: a measurable space structure mS on G and a measure μ on (G,\mathrm{mS}); a subset D ⊆ G (the intended integration domain); a subgroup Z ≤ (AdeleRing (𝓞 F) F)ˣ; a map U from ideals of \mathcal{O}_F to subgroups of G (intended level subgroups); a map gen from the height-one spectrum of \mathcal{O}_F to elements of G (intended Hecke generators); and a measurable space structure nS on \mathbb{A}_F together with a measure ν on it. The structure carries no axioms whatsoever: the fields are arbitrary, so any predicate stated over a CarrierPins F is a predicate on the chosen bundle, not on genuinely automorphic data.
The definition productionPinsOf F D U gen B fills five of the eight slots with canonical values and leaves three as arguments: mS := glBorel (Fin 2) (𝓞 F) F, μ := adelicGLHaar (Fin 2) (𝓞 F) F, Z := ⊤ (the full unit group of \mathbb{A}_F), nS := adeleBorel (𝓞 F) F, and ν := ProbabilityTheory.cond (adelicAddHaar (𝓞 F) F) B, the conditioning of the adelic additive Haar measure on a given subset B \subseteq \mathbb{A}_F; the fields D, U, gen are the corresponding arguments verbatim. Eight rfl lemmas record these projections. Two further lemmas state that the filled μ is a Haar measure on G for the filled \sigma-algebra, and that the filled ν is a probability measure provided \mathrm{adelicAddHaar}(B) is neither 0 nor \infty. Nothing here asserts what the domain D, the level subgroups U or the Hecke generators gen should be.
Relation to Mathlib
Mathlib has no notion of adelic automorphic form on \mathrm{GL}_2 or of such a bundle of ambient data; CarrierPins is the project's own. Its measure-theoretic slots are filled by the project's glBorel, adelicGLHaar, adeleBorel, adelicAddHaar, and by Mathlib's ProbabilityTheory.cond, Measure.IsHaarMeasure and IsProbabilityMeasure.
Where it is used
The bundle is the common argument of the project's space-level predicates for automorphic and cuspidal functions on \mathrm{GL}_2(\mathbb{A}_F) and of its notions of realisability for Hecke eigensystems, which enter the route from modular forms to the Galois representations used in the Frey-curve argument; statements about genuine automorphic forms are the instances at productionPinsOf.
References
- H. Darmon, F. Diamond and R. Taylor, Fermat's Last Theorem, in: Current Developments in Mathematics 1995, International Press, 1995, 1–154
- S. Gelbart, Automorphic Forms on Adele Groups, Annals of Mathematics Studies 83, Princeton University Press, 1975
- A. Weil, Basic Number Theory, Grundlehren der mathematischen Wissenschaften 144, Springer, 1974
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 77 lines
- 18 declarations
- used in the statements of 282 theorems and imported by 311 proofs
- imports 2 definition modules
Source file: Definitions/Def_AutomorphicForm_CarrierPins.lean
Declarations
- structure
AutomorphicForm.CarrierPins - field
AutomorphicForm.CarrierPins.mS - field
AutomorphicForm.CarrierPins.D - field
AutomorphicForm.CarrierPins.Z - field
AutomorphicForm.CarrierPins.U - field
AutomorphicForm.CarrierPins.gen - field
AutomorphicForm.CarrierPins.nS - def
AutomorphicForm.productionPinsOf - theorem
AutomorphicForm.productionPinsOf_mS - theorem
AutomorphicForm.productionPinsOf_μ - theorem
AutomorphicForm.productionPinsOf_Z - theorem
AutomorphicForm.productionPinsOf_nS - theorem
AutomorphicForm.productionPinsOf_D - theorem
AutomorphicForm.productionPinsOf_U - theorem
AutomorphicForm.productionPinsOf_gen - theorem
AutomorphicForm.productionPinsOf_ν - theorem
AutomorphicForm.isHaarMeasure_productionPinsOf_μ - theorem
AutomorphicForm.isProbabilityMeasure_productionPinsOf_ν
Source
import Definitions.Def_NumberField_AdelicHaar import Definitions.Def_AutomorphicForm_AdelicLsXi open IsDedekindDomain NumberField NumberField.AdelicHaar MeasureTheory noncomputable section namespace AutomorphicForm structure CarrierPins (F : Type*) [Field F] [NumberField F] where mS : MeasurableSpace (AdelicGL2 (𝓞 F) F) μ : @Measure (AdelicGL2 (𝓞 F) F) mS D : Set (AdelicGL2 (𝓞 F) F) Z : Subgroup (AdeleRing (𝓞 F) F)ˣ U : Ideal (𝓞 F) → Subgroup (AdelicGL2 (𝓞 F) F) gen : HeightOneSpectrum (𝓞 F) → AdelicGL2 (𝓞 F) F nS : MeasurableSpace (AdeleRing (𝓞 F) F) ν : @Measure (AdeleRing (𝓞 F) F) nS def productionPinsOf (F : Type) [Field F] [NumberField F] (D : Set (AdelicGL2 (𝓞 F) F)) (U : Ideal (𝓞 F) → Subgroup (AdelicGL2 (𝓞 F) F)) (gen : HeightOneSpectrum (𝓞 F) → AdelicGL2 (𝓞 F) F) (B : Set (AdeleRing (𝓞 F) F)) : CarrierPins F where mS := glBorel (Fin 2) (𝓞 F) F μ := adelicGLHaar (Fin 2) (𝓞 F) F D := D Z := ⊤ U := U gen := gen nS := adeleBorel (𝓞 F) F ν := @ProbabilityTheory.cond _ (adeleBorel (𝓞 F) F) (adelicAddHaar (𝓞 F) F) B theorem productionPinsOf_mS (F : Type) [Field F] [NumberField F] (D U gen B) : (productionPinsOf F D U gen B).mS = glBorel (Fin 2) (𝓞 F) F := rfl theorem productionPinsOf_μ (F : Type) [Field F] [NumberField F] (D U gen B) : (productionPinsOf F D U gen B).μ = adelicGLHaar (Fin 2) (𝓞 F) F := rfl theorem productionPinsOf_Z (F : Type) [Field F] [NumberField F] (D U gen B) : (productionPinsOf F D U gen B).Z = ⊤ := rfl theorem productionPinsOf_nS (F : Type) [Field F] [NumberField F] (D U gen B) : (productionPinsOf F D U gen B).nS = adeleBorel (𝓞 F) F := rfl theorem productionPinsOf_D (F : Type) [Field F] [NumberField F] (D U gen B) : (productionPinsOf F D U gen B).D = D := rfl theorem productionPinsOf_U (F : Type) [Field F] [NumberField F] (D U gen B) : (productionPinsOf F D U gen B).U = U := rfl theorem productionPinsOf_gen (F : Type) [Field F] [NumberField F] (D U gen B) : (productionPinsOf F D U gen B).gen = gen := rfl theorem productionPinsOf_ν (F : Type) [Field F] [NumberField F] (D U gen B) : (productionPinsOf F D U gen B).ν = @ProbabilityTheory.cond _ (adeleBorel (𝓞 F) F) (adelicAddHaar (𝓞 F) F) B := rfl theorem isHaarMeasure_productionPinsOf_μ (F : Type) [Field F] [NumberField F] (D U gen B) : @Measure.IsHaarMeasure _ _ _ (productionPinsOf F D U gen B).mS (productionPinsOf F D U gen B).μ := isHaarMeasure_adelicGLHaar (Fin 2) (𝓞 F) F theorem isProbabilityMeasure_productionPinsOf_ν (F : Type) [Field F] [NumberField F] (D : Set (AdelicGL2 (𝓞 F) F)) (U : Ideal (𝓞 F) → Subgroup (AdelicGL2 (𝓞 F) F)) (gen : HeightOneSpectrum (𝓞 F) → AdelicGL2 (𝓞 F) F) (B : Set (AdeleRing (𝓞 F) F)) (hB0 : adelicAddHaar (𝓞 F) F B ≠ 0) (hBtop : adelicAddHaar (𝓞 F) F B ≠ ⊤) : @IsProbabilityMeasure _ (productionPinsOf F D U gen B).nS (productionPinsOf F D U gen B).ν := by letI := adeleBorel (𝓞 F) F exact ProbabilityTheory.cond_isProbabilityMeasure_of_finite hB0 hBtop end AutomorphicForm end
Statements phrased using this module (282)
- Growth of class sums of Hecke recursion values
AutomorphicForm.ClassSumGrowth.exists_forall_classBlock_le_and_classSum_le135 below · depth 18 - Linear lower bound for class-restricted mean-square Hecke sums
AutomorphicForm.ClassSumGrowth.exists_forall_le_classSum_of_classCarriesMass487 below · depth 18 - Cuspidal automorphic functions vanishing on a covering window vanish
AutomorphicForm.eq_zero_of_isCuspAutomorphicFnAt_productionPinsOf_of_coversModCentre_of_forall_mem_eq_zero1 below · depth 20 - Vanishing of the isotypic cusp space when v∣ N
AutomorphicForm.isotypicCuspSubmodule_productionPinsOf_principal_eq_bot_of_dvd1 below · depth 21 - Vanishing of level-one isotypic cusp spaces at primes dividing the level
AutomorphicForm.isotypicCuspSubmodule_productionPinsOf_levelOne_eq_bot_of_dvd1 below · depth 22 - Countable complete orthonormal flat families of induced sections
AutomorphicForm.exists_countable_orthonormal_flat_isInducedSection_family_complete_principalLevel_archCutSubmodule18 below · depth 26 - Twisted principal-series Hecke table is an Eisenstein table
AutomorphicForm.exists_eisensteinTableOf_eq_table_of_isUnitaryChar_of_isUnramifiedCharAt7 below · depth 26 - Maass–Selberg relation on the unitary axis, flat families
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_axis_continuation_mul_conj_eq_maassSelberg_or_twoTerm_slab_of_flat271 below · depth 26 - Integrated continuous-spectrum identity for the truncated GL₂ kernel
AutomorphicForm.exists_forall_setIntegral_lambdaT_finsum_sub_lambdaT_tsum_sub_lambdaT_finsum_chiDet_eq_mul_integral_sum_rightConv_mul_setIntegral_lambdaT_axis_continuation1,261 below · depth 26 - Summable dominant for continuous-spectrum Maass–Selberg pairings
AutomorphicForm.exists_summable_dominant_rightConv_axis_family_maassSelberg_pairings_of_isUnitFactorization_sum_lipschitz414 below · depth 26 - Self-adjointness of M(0) on flat sections, case μ=ν
AutomorphicForm.integral_mul_conj_axis_continuation_weylIntertwiningIntegral_zero_eq_of_eq_of_flat272 below · depth 26 - Twisting an induced section by ‖det‖^{w/2}
AutomorphicForm.isInducedSection_mul_cpowChar_and_continuous_and_maximalCompactAway_of_isInducedSection_of_principalLevel4 below · depth 26 - Twisting by a complex power of the idelic modulus preserves unramifiedness
AutomorphicForm.isUnramifiedCharAt_mul_cpowChar_of_isUnramifiedCharAt2 below · depth 26 - Induced sections of level N force characters unramified outside N
AutomorphicForm.isUnramifiedCharAt_of_isInducedSection_etaFst_etaSnd_of_ne_zero_of_principalLevel3 below · depth 26 - Unitary principal-series tables lie in the ξ-box
AutomorphicForm.table_axis_mem_setOf_xiBox_of_isUnitaryChar_of_mul_mul_rpow_eq0 below · depth 26 - Parseval identity for the GL₃ box-conditioned Whittaker expansion
LanglandsTunnell.CubicInduction.lintegral_box_norm_sq_radicalCoefficient_eq_tsum_norm_sq_whittaker3_diag10 below · depth 26 - Parseval identity along the (2,1) unipotent radical of GL₃
LanglandsTunnell.CubicInduction.lintegral_box_norm_sq_radicalP21_eq_tsum_norm_sq_radicalCoefficient10 below · depth 26 - Left GL₂(F)-invariance of the continued Eisenstein series
AutomorphicForm.axis_continuation_bruhatEisenstein_globalPoints_mul_eq_of_isArchKFinite_family6 below · depth 27 - Regularity and Cauchy–Schwarz bounds for flat Maass–Selberg pairings
AutomorphicForm.continuous_and_hasDerivAt_axis_continuation_weylIntertwiningIntegral_pairings_of_flat0 below · depth 27 - Continuity in t of K-coefficients of πᵢₜ(f)
AutomorphicForm.continuous_integral_rightConv_axis_mul_conj_of_isArchKFinite_family2 below · depth 27 - Uniform bounds and summability for adelic GL₂ Eisenstein data
AutomorphicForm.exists_bound_card_and_archParam_weight_and_summable_of_orthonormal_flat_isInducedSection_family40 below · depth 27 - Dominated and integrable continuous spectral kernel after truncation
AutomorphicForm.exists_forall_dominated_sum_rightConv_axis_continuation_and_integrable_prod_lambdaT443 below · depth 27 - Pointwise spectral identity for the GL₂ kernel on the unitary axis
AutomorphicForm.exists_forall_finsum_integral_centralScalar_sub_tsum_convOp_sub_finsum_chiDet_eq_mul_integral_sum_rightConv_axis_continuation1,238 below · depth 27 - Integrability of truncated axis-continued Eisenstein products on Φ₀
AutomorphicForm.exists_forall_integrableOn_axis_continuation_mul_conj_lambdaT_canonicalTruncationDomain143 below · depth 27 - Uniform polynomial bound for the GL₂ scattering derivative on the unitary axis
AutomorphicForm.exists_forall_lintegral_norm_deriv_axis_continuation_weylIntertwiningIntegral_le_mul_pow_archParam_weight391 below · depth 27 - Uniform rapid decay of K-matrix coefficients on the unitary axis
AutomorphicForm.exists_forall_norm_rightConv_axis_pairing_add_norm_deriv_le_mul_rpow_neg_archParam_of_isUnitFactorization20 below · depth 27 - Maass–Selberg relations on the unitary axis at distinct parameters
AutomorphicForm.exists_forall_setIntegral_lambdaT_axis_continuation_mul_conj_eq_maassSelberg_and_eq_twoTerm_slab_of_ne267 below · depth 27 - Unitarity of the normalised Weyl intertwining operator on the unitary axis
AutomorphicForm.integral_axis_continuation_weylIntertwiningIntegral_mul_conj_eq_integral_mul_conj_of_isUnitaryChar270 below · depth 27 - Twisting a GL₂ test function by ‖det‖^{w/2}
AutomorphicForm.isFactorizableTestFn_and_isBiInvariantUnder_and_isArchBiFinite_mul_ideleNorm_det_rpow5 below · depth 27 - L² continuity in s of truncated Eisenstein families
AutomorphicForm.memLp_two_lambdaT_and_tendsto_eLpNorm_lambdaT_sub_restrict_canonicalTruncationDomain_of_axis_continuation_family133 below · depth 27 - Twist transport and truncated diagonal of the residual kernel
AutomorphicForm.resKernel_twist_and_lambdaT_resKernel_diag21 below · depth 27 - Constant term commutes with continuation of an Eisenstein family
AutomorphicForm.analyticOnNhd_constantTerm_and_eq_add_of_axis_continuation_family4 below · depth 28 - Continuity and GL₂(K)-automorphy of the residual kernel
AutomorphicForm.continuous_uncurry_finsum_chiDet_mul_chiDet_inv_and_apply_globalPoints_mul_and_apply_centralScalar_mul0 below · depth 28 - Continuity and equivariance of the centre-folded GL₂ kernel
AutomorphicForm.continuous_uncurry_finsum_integral_centralScalar_mul_apply_inv_mul_globalPoints_mul_centralScalar_mul5 below · depth 28 - Joint continuity and automorphy of the cuspidal kernel
AutomorphicForm.continuous_uncurry_tsum_convOp_mul_conj_of_orthonormal_isotypicCuspSubmodule504 below · depth 28 - Finitely many local character possibilities at fixed principal level
AutomorphicForm.exists_finite_forall_isUnramifiedCharAt_and_localChar_eq_of_isInducedSection_etaFst_etaSnd_of_ne_zero_of_principalLevel6 below · depth 28 - Uniform weight bound for non-zero induced sections of listed type
AutomorphicForm.exists_forall_abs_weight_le_of_isInducedSection_ne_zero_archCutSubmodule12 below · depth 28 - Almost-everywhere spectral expansion of the continuous kernel for GL₂
AutomorphicForm.exists_forall_ae_prod_restrict_canonicalTruncationDomain_finsum_integral_centralScalar_sub_tsum_convOp_sub_finsum_chiDet_eq_mul_tsum_integral_sum_rightConv_axis_continuation1,237 below · depth 28 - Flat sections: intertwining integral as completed L-ratio with axis bounds
AutomorphicForm.exists_forall_completedL_mul_axis_continuation_weylIntertwiningIntegral_eq_mul_normalizedIntertwining_and_lintegral_le_of_flat350 below · depth 28 - Summable integrable dominants for the GL₂ continuous spectral sum
AutomorphicForm.exists_forall_dominated_sum_rightConv_axis_continuation_of_isCompact439 below · depth 28 - Maass–Selberg relation on the unitary axis, diagonal case μ=ν
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_axis_continuation_mul_conj_eq_maassSelberg_slab_of_ne268 below · depth 28 - Two-term Maass–Selberg relation for an off-diagonal pair
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_axis_continuation_mul_conj_eq_twoTerm_slab_of_ne_of_exists_normOneIdeles268 below · depth 28 - Maass–Selberg relation on a determinant slab, diagonal case
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_pseudoEisenstein_mul_conj_eq_maassSelberg_slab241 below · depth 28 - Off-diagonal Maass–Selberg relation on a determinant slab
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_pseudoEisenstein_mul_conj_eq_twoTerm_slab_of_exists_ideleNorm_eq_one_ne242 below · depth 28 - Integrability of the truncated continuous kernel, summably in the Eisenstein data
AutomorphicForm.exists_forall_integrable_sum_rightConv_axis_continuation_mul_conj_lambdaT_prod_restrict_canonicalTruncationDomain436 below · depth 28 - Iwasawa unfolding of flat induced matrix coefficients
AutomorphicForm.exists_forall_integral_rightConv_axis_mul_conj_eq_mul_iwasawa_integral_of_flat10 below · depth 28 - Uniform bound on orthonormal level-N induced sections of listed type
AutomorphicForm.exists_forall_le_of_orthonormal_isInducedSection_principalLevel_archCutSubmodule_of_ne_bot4 below · depth 28 - Uniform rapid decay of the Iwasawa integral along the unitary axis
AutomorphicForm.exists_forall_norm_iwasawa_integral_axis_add_norm_deriv_le_mul_rpow_neg_archParam_of_isUnitFactorization18 below · depth 28 - Increment form of the GL₂ Maass–Selberg relations on a slab
AutomorphicForm.exists_forall_setIntegral_lambdaT_pseudoEisenstein_mul_conj_sub_eq_maassSelberg_sub_and_sub_eq_twoTerm_sub_slab131 below · depth 28 - Moderate growth of the continued Eisenstein constant term
AutomorphicForm.exists_norm_constantTerm_axis_continuation_le_mul_adelicHeight_rpow_of_mem_of_mem_canonicalTruncationDomain33 below · depth 28 - Rapid decay of the truncated Eisenstein series on Φ₀
AutomorphicForm.exists_norm_lambdaT_axis_continuation_le_mul_adelicHeight_rpow_neg_of_mem_of_mem_canonicalTruncationDomain126 below · depth 28 - Eisenstein kernel: integrability, joint continuity, automorphy
AutomorphicForm.integrable_and_summable_and_continuous_uncurry_tsum_integral_sum_rightConv_axis_continuation_mul_conj440 below · depth 28 - L²-continuity of truncated continued Eisenstein families
AutomorphicForm.memLp_two_lambdaT_and_tendsto_eLpNorm_lambdaT_sub_restrict_canonicalTruncationDomain_of_rapidlyDecreasing_family33 below · depth 28 - Rapid decay of continued Eisenstein series minus its constant term
AutomorphicForm.norm_sub_constantTerm_le_mul_rpow_neg_of_axis_continuation_family110 below · depth 28 - Central character μν of the continued Eisenstein series
AutomorphicForm.axis_continuation_bruhatEisenstein_centralScalar_mul_eq_of_isArchKFinite_family0 below · depth 29 - Completed normalised intertwining operator across the axis
AutomorphicForm.exists_analyticOnNhd_normalizedIntertwining_completedL_mul_axis_continuation_weylIntertwiningIntegral_eq_mul_of_flat37 below · depth 29 - Twisted Eisenstein term: slope, Eisenstein-table atoms, atom-free remainder
AutomorphicForm.exists_atomic_forall_tendsto_of_eq_mul_tsum_integral_sum_rightConv_mul_setIntegral_lambdaT_mul_conj_lambdaT_sigmaAdelicAct_of_isSemiLocalFactorization494 below · depth 29 - Uniform bounds, parameters and summability for GL(2) Eisenstein data
AutomorphicForm.exists_bound_card_and_archParam_weight_and_summable_of_orthonormal_flat_isInducedSection_family_ed240 below · depth 29 - Slab Maass–Selberg relation in the range Re s<Re s'
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_pseudoEisenstein_mul_conj_eq_maassSelberg_slab_of_re_lt_re100 below · depth 29 - Off-diagonal Maass–Selberg relation on a determinant slab
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_pseudoEisenstein_mul_conj_eq_twoTerm_slab_of_exists_ideleNorm_eq_one_ne_of_re_lt_re101 below · depth 29 - Uniform L² bound for the axis derivative of R(s)
AutomorphicForm.exists_forall_lintegral_norm_sq_deriv_normalizedIntertwining_axis_le_of_completedL_mul_weylIntertwiningIntegral_eq_of_flat140 below · depth 29 - Uniform axis L²(K) bound for the normalised intertwining operator
AutomorphicForm.exists_forall_lintegral_norm_sq_normalizedIntertwining_axis_le_of_completedL_mul_weylIntertwiningIntegral_eq_of_flat319 below · depth 29 - Uniform moderate growth of flat Eisenstein series on the truncation domain
AutomorphicForm.exists_forall_norm_axis_continuation_le_mul_pow_archParam_weight_mul_adelicHeight_rpow_of_mem_canonicalTruncationDomain_of_flat409 below · depth 29 - Uniform polynomial growth of unitary GL₂ Eisenstein series
AutomorphicForm.exists_forall_norm_axis_continuation_le_mul_pow_archParam_weight_of_isCompact_of_flat413 below · depth 29 - Rapid decay of axis matrix coefficients for factorizable test functions
AutomorphicForm.exists_forall_norm_rightConv_axis_pairing_add_norm_deriv_le_mul_rpow_neg_archParam_of_isFactorizableTestFn28 below · depth 29 - Integrated spectral expansion of the truncated σ-twisted continuous kernel
AutomorphicForm.exists_forall_setIntegral_lambdaT_sigmaAdelicAct_sub_twistedConvOp_sub_chiDet_eq_mul_tsum_integral_sum_rightConv_mul_setIntegral_lambdaT_mul_conj_lambdaT_sigmaAdelicAct1,291 below · depth 29 - Rectangle form of the GL₂ spectral kernel expansion
AutomorphicForm.exists_forall_setIntegral_prod_restrict_canonicalTruncationDomain_finsum_integral_centralScalar_sub_tsum_convOp_sub_finsum_chiDet_eq_mul_setIntegral_tsum_integral_sum_rightConv_axis_continuation1,234 below · depth 29 - Properness of the centre of GL₂(A_K)
AutomorphicForm.exists_isCompact_forall_mem_of_inv_mul_globalPoints_mul_centralScalar_mul_mem_of_isCompact0 below · depth 29 - Finiteness of rational classes mod centre meeting a compact set
AutomorphicForm.finite_setOf_exists_mem_exists_inv_mul_globalPoints_out_mul_centralScalar_mul_mem_of_isCompact1 below · depth 29 - Uniform rapid decay of truncated unitary Eisenstein series
AutomorphicForm.forall_exists_forall_norm_lambdaT_axis_continuation_le_mul_pow_archParam_weight_mul_adelicHeight_rpow_neg_of_mem_canonicalTruncationDomain_of_flat277 below · depth 29 - Class-block summable majorant for the cuspidal kernel
AutomorphicForm.forall_isCompact_exists_summable_forall_finsum_norm_convOp_mul_conj_le_of_orthonormal_isotypicCuspSubmodule503 below · depth 29 - Level-N invariance forces triviality of μᵥ,νᵥ on congruence units
AutomorphicForm.localChar_eq_one_of_isInducedSection_etaFst_etaSnd_of_ne_zero_of_principalLevel_of_valued_sub_one_le3 below · depth 29 - L²-boundedness of truncated pseudo-Eisenstein series on a slab
AutomorphicForm.memLp_two_lambdaT_pseudoEisenstein_restrict_canonicalTruncationDomain46 below · depth 29 - Continuity of right convolution of an automorphic L² function
AutomorphicForm.continuous_convOp_of_isAutomorphicFnAt_canonicalTruncationDomain_of_continuous26 below · depth 30 - Right convolution splits along an a.e. decomposition of automorphic functions
AutomorphicForm.convOp_eq_add_add_of_ae_eq_restrict_canonicalTruncationDomain_of_isAutomorphicFnAt_of_continuous27 below · depth 30 - Uniform coordinate bound for flat induced-section families
AutomorphicForm.exists_basis_forall_flat_isInducedSection_family_eq_sum_and_norm_sq_le_lintegral_of_principalLevel_archCutSubmodule32 below · depth 30 - Twisted Maass–Selberg relations for truncated Eisenstein series
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_axis_continuation_mul_conj_lambdaT_sigmaAdelicAct_eq_maassSelberg_cases_slab_of_flat288 below · depth 30 - Truncated Eisenstein series as pseudo-Eisenstein series of the truncated section
AutomorphicForm.exists_forall_lambdaT_pseudoEisenstein_eq_pseudoEisenstein_ite_adelicHeight_le_of_mem_canonicalTruncationDomain21 below · depth 30 - Uniform moderate growth of GL₂ Eisenstein series on centre-cut Siegel sets
AutomorphicForm.exists_forall_norm_axis_continuation_le_mul_pow_archParam_weight_mul_adelicHeight_rpow_of_mem_centreCutSiegelSet_mul_of_flat410 below · depth 30 - Uniform rapid decay of non-constant part of GL₂ Eisenstein series
AutomorphicForm.exists_forall_norm_axis_continuation_sub_constantTerm_le_mul_pow_archParam_weight_mul_rpow_neg_of_isCompact_of_flat261 below · depth 30 - Polynomial bound for constant terms of flat unitary Eisenstein families
AutomorphicForm.exists_forall_norm_constantTerm_axis_continuation_le_mul_pow_archParam_weight_mul_adelicHeight_rpow_half_of_flat286 below · depth 30 - Continuous block of the GL₂ spectral expansion on A× B
AutomorphicForm.exists_forall_setIntegral_convOp_continuousProjection_eq_mul_setIntegral_prod_tsum_integral_sum_rightConv_axis_continuation1,066 below · depth 30 - Integrated truncated twisted kernel and its continuous-spectrum expansion
AutomorphicForm.exists_forall_setIntegral_lambdaT_finsum_sub_lambdaT_tsum_sub_lambdaT_finsum_chiDet_sigmaAdelicAct_symm_eq_mul_tsum_integral_sum_rightConv_mul_setIntegral_lambdaT_mul_conj_lambdaT_of_norm_eq_one1,249 below · depth 30 - Summable dominants and Lipschitz bounds for twisted Maass–Selberg pairings
AutomorphicForm.exists_summable_dominant_rightConv_axis_family_sigma_maassSelberg_pairings_of_isSemiLocalFactorization_lipschitz426 below · depth 30 - Twisted and untwisted truncated cuspidal kernels integrate equally
AutomorphicForm.integrableOn_and_setIntegral_lambdaT_tsum_finsum_twistedConvOp_mul_conj_eq_setIntegral_lambdaT_tsum_convOp_mul_conj_sigmaAdelicAct_symm542 below · depth 30 - Adjointness of the Weyl intertwining integral under a Galois twist
AutomorphicForm.integral_mul_conj_weylIntertwiningIntegral_sigmaAdelicAct_eq_of_sigmaInvariant_and_of_sigmaReversed_of_principalLevel_of_ne_bot157 below · depth 30 - Automorphisation of a bounded compactly supported test function
AutomorphicForm.isAutomorphicFnAt_finsum_integral_indicator_canonicalTruncationDomain21 below · depth 30 - Twisted truncated kernel versus untwisted ξ₀-kernel
AutomorphicForm.lambdaT_finsum_integral_sigmaAdelicAct_eq_and_lambdaT_finsum_twistedConvOp_chiDet_eq_and_rightConv_mul_ideleNorm_det_rpow_eq28 below · depth 30 - Cuspidal block of the rectangle spectral expansion for GL₂
AutomorphicForm.setIntegral_convOp_cuspProjection_eq_mul_setIntegral_prod_tsum_convOp_mul_conj_of_orthonormal_isotypicCuspSubmodule535 below · depth 30 - Residual block of the rectangular GL₂ spectral expansion
AutomorphicForm.setIntegral_convOp_residualProjection_eq_mul_setIntegral_prod_finsum_chiDet_mul_chiDet_inv86 below · depth 30 - Unfolding the centre-folded GL₂ kernel against a truncated test function
AutomorphicForm.setIntegral_finsum_integral_centralScalar_mul_eq_convOp_finsum_integral_indicator_of_hasCompactSupport8 below · depth 30 - Finitely spanned K-finite induced sections at trivial level vanish
AutomorphicForm.eq_zero_of_isInducedSection_of_isArchKFinite_of_forall_mem_span_range_of_principalLevel_bot3 below · depth 31 - Admissible flat family with prescribed maximal-compact values
AutomorphicForm.exists_admissible_flat_family_restrict_eq_of_sameClass_of_principalLevel_archCutSubmodule11 below · depth 31 - Finite class-sorted family spanning admissible section restrictions
AutomorphicForm.exists_fin_admissible_forall_flat_restrict_eq_sum_sameClass_of_principalLevel_archCutSubmodule29 below · depth 31 - Entire Euler-normalised non-constant part of adelic GL₂ Eisenstein series
AutomorphicForm.exists_forall_exists_entire_eulerProduct_mul_eq_bruhatEisenstein_sub_constantTerm_norm_le_mul_pow_archParam_weight_mul_rpow_neg_of_isCompact_of_flat138 below · depth 31 - Uniform polynomial bound for partial L-factors on the unitary axis
AutomorphicForm.exists_forall_exists_entire_mul_eulerProduct_eq_and_ne_zero_and_norm_le_mul_pow_archParam_weight_mul_norm_of_isInducedSection_principalLevel163 below · depth 31 - Maass–Selberg relations on the unitary axis, two character pairs
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_axis_continuation_mul_conj_eq_maassSelberg_or_twoTerm_or_cross_or_zero_two_pairs_slab_of_flat277 below · depth 31 - Integrability of the truncated σ-twisted continuous spectral expansion
AutomorphicForm.exists_forall_integrable_prod_sum_rightConv_mul_axis_continuation_mul_conj_lambdaT_sigmaAdelicAct_symm_of_subset_iUnion_image_centreCutSiegelSet442 below · depth 31 - Uniform sup bound on K for flat induced families
AutomorphicForm.exists_forall_norm_apply_le_and_norm_axis_intertwining_apply_le_of_mem_adelicMaximalCompact_of_flat284 below · depth 31 - Continuous-spectrum Plancherel identity for R(f) on the truncation domain
AutomorphicForm.exists_forall_setIntegral_convOp_continuousProjection_mul_conj_continuousProjection_eq_mul_tsum_integral_sum_rightConv_mul_setIntegral_mul_conj_axis_continuation1,049 below · depth 31 - Twisted diagonal sum equals the σ-twisted cut trace
AutomorphicForm.finsum_setIntegral_convOp_mul_conj_sigmaAdelicAct_symm_eq_twistedCutTrace_of_orthonormal_principalLevel_of_isFundamentalDomain_slab367 below · depth 31 - Truncated cuspidal kernel integrated along a Galois-twisted diagonal
AutomorphicForm.forall_integrableOn_and_setIntegral_lambdaT_tsum_convOp_mul_conj_sigmaAdelicAct_symm_eq_tsum_finsum_setIntegral_of_orthonormal_principalLevel_of_isFundamentalDomain_slab508 below · depth 31 - Expansion of int_A R(f)u along an orthonormal cusp system
AutomorphicForm.hasSum_setIntegral_mul_conj_mul_setIntegral_convOp_of_orthonormal_isotypicCuspSubmodule62 below · depth 31 - Adjointness of the GL₂ intertwining operator on the unitary axis
AutomorphicForm.integral_mul_conj_axis_continuation_weylIntertwiningIntegral_eq_of_swap_pair_of_principalLevel_of_ne_bot148 below · depth 31 - Admissibility of the continued Weyl intertwining integral on the axis
AutomorphicForm.isInducedSection_and_continuous_and_isArchKFinite_axis_continuation_weylIntertwiningIntegral_of_forall_mem_principalLevel3 below · depth 31 - Galois transport of a flat induced family and its continuation
AutomorphicForm.isInducedSection_and_isArchKFinite_and_axis_continuation_comp_sigmaAdelicAct_symm_of_flat_family_of_principalLevel7 below · depth 31 - Local L² property of automorphic forms on GL₂(A)
AutomorphicForm.memLp_two_restrict_of_isCompact_of_isAutomorphicFnAt_canonicalTruncationDomain26 below · depth 31 - Residual members are spanned by continuous characters χ∘det
AutomorphicForm.mem_span_chiDet_continuous_of_mem_residualSpan_of_isAutomorphicFnAt25 below · depth 31 - Orthogonality of χ∘det on the canonical truncation domain
AutomorphicForm.setIntegral_chiDet_mul_conj_chiDet_canonicalTruncationDomain_eq_and_eq_zero_of_ne_of_squaresToXi19 below · depth 31 - Continuous part: integral over A as normalised pairing with u^Aₑ
AutomorphicForm.setIntegral_convOp_continuousProjection_eq_inv_mul_setIntegral_convOp_mul_conj_continuousProjection88 below · depth 31 - Unfolding an automorphisation against a continuous ξ-equivariant function
AutomorphicForm.setIntegral_finsum_integral_indicator_mul_conj_eq_mul_setIntegral_mul_conj_of_continuous_of_isLsXiFunction72 below · depth 31 - Unfolding an automorphised test function against an automorphic function
AutomorphicForm.setIntegral_finsum_integral_indicator_mul_conj_eq_mul_setIntegral_mul_conj_of_isAutomorphicFnAt60 below · depth 31 - Cuspidal component of the automorphised indicator
AutomorphicForm.setIntegral_mul_conj_eq_mul_setIntegral_inter_conj_of_lsXi_threeWay_of_mem_isotypicCuspSubmodule74 below · depth 31 - Fubini for the Eisenstein kernel on a measurable rectangle
AutomorphicForm.setIntegral_prod_tsum_integral_sum_rightConv_axis_continuation_mul_conj_eq_tsum_integral_sum_mul_setIntegral_indicator_mul_conj440 below · depth 31 - Twisted cuspidal trace under norm twist and level change
AutomorphicForm.tsum_twistedCutTrace_eq_tsum_twistedCutTrace_principalLevel_mul_ideleNorm_det_rpow_of_isFundamentalDomain_slab36 below · depth 31 - Continued Weyl intertwining integral preserves archimedean types
AutomorphicForm.axis_continuation_weylIntertwiningIntegral_mem_archCutSubmodule_of_forall_mem_archCutSubmodule2 below · depth 32 - Smoothing upgrades almost-everywhere cuspidality to pointwise vanishing
AutomorphicForm.constantTerm_convOp_eq_zero_of_ae_constantTerm_eq_zero_of_isAutomorphicFnAt27 below · depth 32 - Hecke translate of an orthogonal cuspidal remainder vanishes
AutomorphicForm.convOp_ae_eq_zero_restrict_canonicalTruncationDomain_of_ae_constantTerm_eq_zero_of_forall_setIntegral_mul_conj_eq_zero57 below · depth 32 - L² boundedness of right convolution on the truncation domain
AutomorphicForm.exists_forall_eLpNorm_convOp_le_mul_eLpNorm_restrict_canonicalTruncationDomain_of_isAutomorphicFnAt34 below · depth 32 - Uniform Euler factorisation and decay of Eisenstein Whittaker coefficients
AutomorphicForm.exists_forall_exists_entire_whittakerCoefficient_bruhatEisenstein_eq_eulerProduct_mul_norm_tsum_le_mul_pow_archParam_weight_mul_rpow_neg_of_isCompact_of_flat117 below · depth 32 - Uniform dimension bound for induced sections restricted to K
AutomorphicForm.exists_forall_exists_submodule_maximalCompact_finrank_le_restrict_mem_of_isInducedSection_principalLevel_archCutSubmodule7 below · depth 32 - Maass–Selberg relations on the unitary axis for flat sections
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_axis_continuation_mul_conj_eq_maassSelberg_or_twoTerm_or_cross_or_zero_two_pairs_canonicalTruncationDomain_of_flat274 below · depth 32 - Paley–Wiener spectral form of R(f) on the continuous spectrum
AutomorphicForm.exists_forall_setIntegral_convOp_continuousProjection_pseudoEisenstein_mul_conj_eq_mul_tsum_integral_sum_rightConv_axis_pairing_of_matched_paleyWiener520 below · depth 32 - L² limits of automorphic functions; cuspidality closed and linear
AutomorphicForm.exists_isAutomorphicFnAt_ae_eq_of_tendsto_eLpNorm_and_ae_constantTerm_eq_zero_canonicalTruncationDomain23 below · depth 32 - Continuous-spectrum form of R(f) for automorphised bounded cutoffs
AutomorphicForm.forall_setIntegral_convOp_continuousProjection_mul_conj_eq_mul_tsum_integral_sum_rightConv_axis_pairing_of_forall_paleyWiener1,015 below · depth 32 - Trace-class convolution on the cut cuspidal spectrum, Galois-twisted
AutomorphicForm.integrableOn_convOp_mul_conj_sigmaAdelicAct_symm_and_summable_setIntegral_norm_finsum_of_orthonormal_principalLevel_of_isFundamentalDomain_slab113 below · depth 32 - Right convolution preserves automorphy at the truncation-domain pins
AutomorphicForm.isAutomorphicFnAt_convOp_of_isAutomorphicFnAt_canonicalTruncationDomain34 below · depth 32 - Adjointness of right convolution on the truncation domain
AutomorphicForm.setIntegral_mul_conj_convOp_eq_setIntegral_convOp_conj_inv_mul_conj_of_isAutomorphicFnAt31 below · depth 32 - Cuspidal part vanishes; residual part is the residual projection
AutomorphicForm.ae_eq_zero_cuspidalPart_of_forall_isSlabProfile_setIntegral_pseudoEisenstein_mul_conj_eq_zero22 below · depth 33 - Axis pairing of (φ,R(f)ψ) as Eisenstein-coefficient sum
AutomorphicForm.conj_sum_integral_axis_pairing_add_eq_mul_tsum_integral_sum_rightConv_mul_thetaPairing_of_matched_paleyWiener363 below · depth 33 - Uniform dilation bound for Whittaker coefficients of flat Eisenstein families
AutomorphicForm.exists_forall_exists_whittakerCoefficient_diagOne_eq_eulerProduct_mul_entire_norm_le_mul_pow_archParam_weight_dilation_of_flat107 below · depth 33 - Uniform bound on orthonormal systems of adelic induced sections
AutomorphicForm.exists_forall_le_of_orthonormal_maximalCompact_isInducedSection_principalLevel_archCutSubmodule_of_ne_bot2 below · depth 33 - Polynomial growth on the unitary axis of the continued intertwining integral
AutomorphicForm.exists_forall_norm_axis_continuation_weylIntertwiningIntegral_le_mul_pow_of_flat165 below · depth 33 - Maass–Selberg relations on the unitary axis, two character pairs
AutomorphicForm.exists_forall_setIntegral_lambdaT_axis_continuation_mul_conj_eq_maassSelberg_and_eq_twoTerm_and_eq_cross_and_eq_zero_two_pairs_slab_of_ne268 below · depth 33 - Eisenstein coefficients of a matched pseudo-Eisenstein series on the unitary axis
AutomorphicForm.exists_forall_setIntegral_pseudoEisenstein_mul_conj_axis_continuation_eq_mul_integral_mul_conj_add_integral_mul_conj_weylIntertwining_of_matched_paleyWiener86 below · depth 33 - Matched Paley–Wiener pair approximating two automorphisations jointly
AutomorphicForm.exists_matched_paleyWiener_pair_forall_norm_setIntegral_sub_le_and_tsum_integral_sum_normSq_sub_setIntegral_axis_continuation_le1,006 below · depth 33 - Smoothing an a.e.-cuspidal automorphic function on GL₂
AutomorphicForm.isSmoothCuspAutomorphicFnAt_convOp_and_continuous_and_mem_archCutSubmodule_of_ae_constantTerm_eq_zero40 below · depth 33 - Stability of the R(f)-pairing under weak L² approximation
AutomorphicForm.norm_setIntegral_convOp_mul_conj_sub_le_of_forall_norm_setIntegral_sub_mul_conj_le44 below · depth 33 - Stability of the Eisenstein coefficient form of R(f)
AutomorphicForm.norm_tsum_integral_sum_rightConv_mul_mul_conj_sub_le_of_tsum_integral_sum_normSq_sub_le12 below · depth 33 - Right translation by K¹ preserves flat induced families and L²-norm
AutomorphicForm.rightTranslate_adelicMaximalCompact_det_one_isInducedSection_isArchKFinite_isKfSmooth_flat_principalLevel_archCutSubmodule_and_integral_norm_sq_eq2 below · depth 33 - Continuous-spectrum part of a pseudo-Eisenstein pairing as a difference
AutomorphicForm.setIntegral_continuousPart_mul_conj_convOp_continuousPart_eq_sub_of_pseudoEisenstein_threeWay81 below · depth 33 - Axis Parseval identity for the pair (φ, R(f)ψ)
AutomorphicForm.setIntegral_pseudoEisenstein_mul_conj_convOp_pseudoEisenstein_sub_eq_mul_sum_integral_axis_pairing_convOp_of_paleyWiener351 below · depth 33 - Convolution by an arch-type-bi-finite test function stays in the arch cut
AutomorphicForm.convOp_mem_archCutSubmodule_of_isArchBiFinite_of_isAutomorphicFnAt28 below · depth 34 - Right convolution preserves the residual projection property
AutomorphicForm.convOp_residualProjection_of_residualProjection38 below · depth 34 - Young-type L² bound for right convolution on truncation domains
AutomorphicForm.eLpNorm_convOp_le_ofReal_integral_norm_mul_eLpNorm_restrict_canonicalTruncationDomain_of_isAutomorphicFnAt34 below · depth 34 - Uniform Whittaker factorisation for flat level-N Eisenstein pieces
AutomorphicForm.exists_forall_exists_whittakerCoefficient_bruhatEisenstein_diagOne_eq_cpowChar_mul_sum_eulerProduct_norm_le_on_balls_and_of_re_mem_Icc_of_flat91 below · depth 34 - Truncated inner products of GL₂ Eisenstein series: cross and vanishing cases
AutomorphicForm.exists_forall_integrableOn_and_setIntegral_lambdaT_pseudoEisenstein_mul_conj_eq_cross_and_eq_zero_two_pairs_slab_of_re_lt_re104 below · depth 34 - Torus pairing of matched Paley–Wiener profile with Eisenstein constant terms
AutomorphicForm.exists_forall_setIntegral_inv_ideleNorm_smul_integral_maximalCompact_mul_conj_constantTerm_eq_of_matched_paleyWiener11 below · depth 34 - Maass–Selberg increment for two pairs of GL₂ Borel data
AutomorphicForm.exists_forall_setIntegral_lambdaT_pseudoEisenstein_mul_conj_sub_eq_maassSelberg_sub_and_sub_eq_twoTerm_sub_and_sub_eq_cross_sub_and_sub_eq_zero_two_pairs_slab129 below · depth 34 - Eisenstein coefficients controlled by a weak L² distance
AutomorphicForm.exists_forall_tsum_integral_sum_normSq_setIntegral_axis_continuation_sub_le_mul_sq_of_forall_norm_setIntegral_sub_mul_conj_le1,003 below · depth 34
… and 132 more statements (search for the module name to find them).