Definitions/Def_AutomorphicForm_SmoothAutomorphicFnAt.lean
Finite-adelic smoothness clause for adelic automorphic functions
Let F be a number field, \mathcal{O}_F its ring of integers, and G=\mathrm{GL}_2(\mathbb{A}_F) the adelic group AdelicGL2 (𝓞 F) F. The module first isolates the subgroup finiteAdelicGL2Subgroup F, defined as the kernel of the archimedean projection \mathrm{GL}_2(\mathbb{A}_F)\to\mathrm{GL}_2(\mathbb{A}_{F,\infty}) induced by the ring map \mathbb{A}_F\to\mathbb{A}_{F,\infty} (the project's glArch): membership is by definition the equation \mathrm{glArch}(g)=1, and since \mathrm{glArch} is continuous this subgroup is closed, being the preimage of \{1\}. Next, IsKfSmooth F φ, for \varphi:G\to\mathbb{C}, is defined as the assertion that \varphi, viewed as an element of the type synonym RightTranslationFn carrying the right-translation action (g\cdot f)(x)=f(xg), is a smooth vector for the restricted action of finiteAdelicGL2Subgroup F; unfolding the project's IsSmoothVector, this says exactly that the stabiliser \{k:\mathrm{glArch}(k)=1,\ \varphi(\,\cdot\,k)=\varphi\} is open in that subgroup — i.e. \varphi is right-invariant under an open subgroup of the finite-adelic part. No archimedean regularity is asserted.
The two predicates defined here conjoin this clause to the module's parents: IsSmoothAutomorphicFnAt F pins ξ φ is IsAutomorphicFnAt F pins ξ φ together with IsKfSmooth F φ, and IsSmoothCuspAutomorphicFnAt F pins ξ φ is IsCuspAutomorphicFnAt F pins ξ φ together with IsKfSmooth F φ; here pins : CarrierPins F bundles the measurable structures and measures on G and on \mathbb{A}_F, a domain D, a subgroup Z\le(\mathbb{A}_F)^\times and level and Hecke data, and \xi:Z\to\mathbb{C}^\times is a character.
The accompanying lemmas are elementary: constant functions are smooth vectors for right translation on any topological group, hence K_f-smooth; every vector is smooth for a discrete group, in particular for the trivial subgroup; the zero function satisfies both predicates; the constant function 1 satisfies the smooth automorphic predicate for the trivial character when \mu(D)<\infty, and fails the smooth cuspidal predicate whenever \nu is a probability measure, since then its constant term is 1.
Relation to Mathlib
Mathlib has no notion of automorphic form on an adelic group; the smooth-vector vocabulary (IsSmoothVector, defined as openness of MulAction.stabilizer, and the type synonym RightTranslationFn with its right-translation MulAction) is the project's own, as are the adelic projections used to cut out the finite-adelic subgroup.
Where it is used
These predicates provide the finite-level (right invariance under an open compact subgroup of the finite adeles) clause of the adelic definition of automorphic and cuspidal automorphic functions on \mathrm{GL}_2(\mathbb{A}_F), the setting in which modular forms and their Hecke eigensystems are handled on the automorphic side of the modularity statements used in the proof.
References
- H. Darmon, F. Diamond and R. Taylor, Fermat's Last Theorem, in: Current Developments in Mathematics 1995, International Press, 1995, 1–154
- D. Bump, Automorphic Forms and Representations, Cambridge Studies in Advanced Mathematics 55, Cambridge University Press, 1997
- 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.
- 91 lines
- 16 declarations
- used in the statements of 480 theorems and imported by 534 proofs
- imports 3 definition modules
Source file: Definitions/Def_AutomorphicForm_SmoothAutomorphicFnAt.lean
Declarations
- def
AutomorphicForm.finiteAdelicGL2Subgroup - theorem
AutomorphicForm.mem_finiteAdelicGL2Subgroup_iff - theorem
AutomorphicForm.isClosed_finiteAdelicGL2Subgroup - def
AutomorphicForm.IsKfSmooth - theorem
AutomorphicForm.isKfSmooth_iff - theorem
AutomorphicForm.isSmoothVector_rightTranslationFn_const - theorem
AutomorphicForm.isKfSmooth_const - theorem
AutomorphicForm.isKfSmooth_zero - theorem
AutomorphicForm.isSmoothVector_of_discreteTopology - theorem
AutomorphicForm.isSmoothVector_bot_rightTranslationFn - def
AutomorphicForm.IsSmoothAutomorphicFnAt - def
AutomorphicForm.IsSmoothCuspAutomorphicFnAt - theorem
AutomorphicForm.isSmoothAutomorphicFnAt_zero - theorem
AutomorphicForm.isSmoothCuspAutomorphicFnAt_zero - theorem
AutomorphicForm.isSmoothAutomorphicFnAt_one_trivial - theorem
AutomorphicForm.not_isSmoothCuspAutomorphicFnAt_one
Source
import Definitions.Def_AutomorphicForm_AutomorphicFnAt import Definitions.Def_RepTheory_SmoothVectors import Definitions.Def_NumberField_AdelicLevel open IsDedekindDomain NumberField MeasureTheory Matrix open FLT.SmoothVectors open AutomorphicForm noncomputable section namespace AutomorphicForm variable (F : Type) [Field F] [NumberField F] def finiteAdelicGL2Subgroup : Subgroup (AdelicGL2 (𝓞 F) F) := MonoidHom.ker (NumberField.AdelicLevel.glArch (𝓞 F) F) theorem mem_finiteAdelicGL2Subgroup_iff (g : AdelicGL2 (𝓞 F) F) : g ∈ finiteAdelicGL2Subgroup F ↔ NumberField.AdelicLevel.glArch (𝓞 F) F g = 1 := Iff.rfl theorem isClosed_finiteAdelicGL2Subgroup : IsClosed (finiteAdelicGL2Subgroup F : Set (AdelicGL2 (𝓞 F) F)) := by have : finiteAdelicGL2Subgroup F = (NumberField.AdelicLevel.glArch (𝓞 F) F) ⁻¹' {1} := by ext g; exact Iff.rfl rw [this] exact (isClosed_singleton).preimage (NumberField.AdelicLevel.continuous_glArch (𝓞 F) F) def IsKfSmooth (φ : AdelicGL2 (𝓞 F) F → ℂ) : Prop := IsSmoothVector (finiteAdelicGL2Subgroup F) (RightTranslationFn.mk φ : RightTranslationFn (AdelicGL2 (𝓞 F) F) ℂ) theorem isKfSmooth_iff (φ : AdelicGL2 (𝓞 F) F → ℂ) : IsKfSmooth F φ ↔ IsSmoothVector (finiteAdelicGL2Subgroup F) (RightTranslationFn.mk φ) := Iff.rfl theorem isSmoothVector_rightTranslationFn_const {G : Type*} [Group G] [TopologicalSpace G] {M : Type*} (c : M) : IsSmoothVector G (RightTranslationFn.mk (fun (_ : G) => c)) := by rw [isSmoothVector_iff_isOpen_stabilizer] convert isOpen_univ using 2 rw [Set.eq_univ_iff_forall] intro g exact MulAction.mem_stabilizer_iff.mpr (RightTranslationFn.ext fun _ => rfl) theorem isKfSmooth_const (c : ℂ) : IsKfSmooth F (fun _ => c) := (isSmoothVector_rightTranslationFn_const c).restrict_subgroup (finiteAdelicGL2Subgroup F) theorem isKfSmooth_zero : IsKfSmooth F (fun _ => (0 : ℂ)) := isKfSmooth_const F 0 theorem isSmoothVector_of_discreteTopology {G : Type*} [Group G] [TopologicalSpace G] [DiscreteTopology G] {M : Type*} [MulAction G M] (v : M) : IsSmoothVector G v := isOpen_discrete _ theorem isSmoothVector_bot_rightTranslationFn {G : Type*} [Group G] [TopologicalSpace G] {M : Type*} (φ : G → M) : IsSmoothVector (⊥ : Subgroup G) (RightTranslationFn.mk φ) := isSmoothVector_of_discreteTopology _ def IsSmoothAutomorphicFnAt (pins : CarrierPins F) (ξ : pins.Z →* ℂˣ) (φ : AdelicGL2 (𝓞 F) F → ℂ) : Prop := IsAutomorphicFnAt F pins ξ φ ∧ IsKfSmooth F φ def IsSmoothCuspAutomorphicFnAt (pins : CarrierPins F) (ξ : pins.Z →* ℂˣ) (φ : AdelicGL2 (𝓞 F) F → ℂ) : Prop := IsCuspAutomorphicFnAt F pins ξ φ ∧ IsKfSmooth F φ theorem isSmoothAutomorphicFnAt_zero (pins : CarrierPins F) (ξ : pins.Z →* ℂˣ) : IsSmoothAutomorphicFnAt F pins ξ (fun _ => (0 : ℂ)) := ⟨isAutomorphicFnAt_zero F pins ξ, isKfSmooth_zero F⟩ theorem isSmoothCuspAutomorphicFnAt_zero (pins : CarrierPins F) (ξ : pins.Z →* ℂˣ) : IsSmoothCuspAutomorphicFnAt F pins ξ (fun _ => (0 : ℂ)) := ⟨isCuspAutomorphicFnAt_zero F pins ξ, isKfSmooth_zero F⟩ theorem isSmoothAutomorphicFnAt_one_trivial (pins : CarrierPins F) (hDfin : @pins.μ pins.D < ⊤) : IsSmoothAutomorphicFnAt F pins (1 : pins.Z →* ℂˣ) (fun _ => (1 : ℂ)) := ⟨isAutomorphicFnAt_one_trivial F pins hDfin, isKfSmooth_const F 1⟩ theorem not_isSmoothCuspAutomorphicFnAt_one (pins : CarrierPins F) (ξ : pins.Z →* ℂˣ) [@IsProbabilityMeasure _ pins.nS pins.ν] : ¬ IsSmoothCuspAutomorphicFnAt F pins ξ (fun _ => (1 : ℂ)) := fun h => not_isCuspAutomorphicFnAt_one F pins ξ h.1 end AutomorphicForm end
Statements phrased using this module (480)
- Non-vanishing right convolution with a level-N factorisable test function
AutomorphicForm.exists_isFactorizableTestFn_rightConv_ne_zero_of_levelOne_invariant1 below · depth 14 - Integrability and summability of adelic GL₂ Whittaker coefficients
AutomorphicForm.whittakerCoefficientIntegrable_and_summable_of_isKfSmooth_of_contDiff_mixedSpace12 below · depth 14 - K_f-smooth functions admit a level of unipotent invariance
AutomorphicForm.IsKfSmooth.exists_ideal_forall_apply_mul_conj_unipotentGL2_eq0 below · depth 15 - Explicit coset system for the Hecke double coset at v
HeckeIntegralSeam.exists_isHeckeCosetSystem_localRep_heckeGen0 below · depth 16 - Holomorphy at real places of half-determinant twisted translate sums
LanglandsTunnell.Converse.CuspSynthesis.isArchHolomorphicAt_translateSum_halfDet27 below · depth 16 - Automorphy transports from a Siegel window to a fundamental domain
AutomorphicForm.isAutomorphicFnAt_of_isFundamentalDomain_of_isAutomorphicFnAt_of_coversModCentre11 below · depth 17 - A non-vanishing torus point supported on S
UnramifiedWhittaker.exists_apply_diagOne_mul_ne_zero_of_apply_ne_zero1 below · depth 17 - Integral matrix at a place prime to the level lies in U₁(N)
AdelicDock.finEmbed_localEmbed_mem_levelOne_inf_finiteAdelicGL2Subgroup0 below · depth 18 - 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 - Rankin–Selberg package for one continuous GL₂ cusp realisation
AutomorphicForm.RankinSelberg.exists_testData_analyticOnNhd_sub_one_half_mul_peterssonIntegral_and_hasProd_rsEulerPoly_self552 below · depth 18 - Non-vanishing Whittaker coefficient forces ψ unramified outside S
AutomorphicForm.addChar_eq_one_on_integers_off_of_whittakerCoefficient_ne_zero1 below · depth 18 - Uniform convolution bound for smooth cusp forms on a Siegel window
AutomorphicForm.exists_forall_norm_rightConv_le_mul_eLpNorm_of_isSmoothCuspAutomorphicFnAt_of_coversModCentre68 below · depth 18 - Right convolution by a test function preserves vanishing constant term
AutomorphicForm.isCuspidalFn_rightConv4 below · depth 18 - Haar measure on GL₂(A_ℚ) splits as a product
LanglandsTunnell.Converse.exists_isHaarMeasure_map_adelicGLHaar_eq_prod_archMeasure3 below · depth 18 - Rankin–Selberg test data: bad-place part analytic and positive past 1/2
AutomorphicForm.RankinSelberg.exists_testData_sPartIntegral_self_analyticOnNhd_re_pos390 below · depth 19 - C² regularity along the unipotent archimedean direction over ℚ
AutomorphicForm.contDiff_apply_unipotentGL2_mixedSpace_mul_of_isArchSmoothAt_rat0 below · depth 19 - Continuity of unipotent Schwartz–Bruhat averages on GL₂(A_F)
AutomorphicForm.continuous_unipotentAverage6 below · depth 19 - Regularised Bruhat–Eisenstein family: continuation and moderate growth
AutomorphicForm.exists_analyticOnNhd_sub_one_half_mul_bruhatEisenstein_norm_le_archHeight_pow_of_isArchKFinite_family123 below · depth 19 - Non-vanishing Whittaker coefficient at a principal idele
AutomorphicForm.exists_mem_principalIdeles_whittakerCoefficient_one_diagOne_mul_ne_zero24 below · depth 19 - Pole at s=1/2 of the Bruhat–Eisenstein family on GL₂
AutomorphicForm.exists_tendsto_sub_one_half_mul_bruhatEisenstein_continuation_of_isArchKFinite_family180 below · depth 19 - Support of the first Whittaker coefficient on the torus diag(b,1)
AutomorphicForm.exists_whittakerCoefficient_one_diagOne_eq_zero_of_exp_lt_valuation24 below · depth 19 - Compactness of the level group with trivial archimedean part
AutomorphicForm.isCompact_levelOne_inf_finiteAdelicGL2Subgroup0 below · depth 19 - Schwartz–Bruhat unipotent averages of cuspidal functions are cuspidal
AutomorphicForm.isCuspidalFn_unipotentAverage3 below · depth 19 - Local double-coset sums preserve isotypic cusp forms
AutomorphicForm.isIsotypicCuspFormAt_sum_apply_mul_finEmbed_localEmbed_of_isHeckeCosetSystem23 below · depth 19 - Right convolution by a factorizable test function is K_f-smooth
AutomorphicForm.isKfSmooth_rightConv1 below · depth 19 - K_f-smoothness of unipotent Schwartz–Bruhat averages
AutomorphicForm.isKfSmooth_unipotentAverage0 below · depth 19 - Left GL₂(F)-invariance of unipotent averages
AutomorphicForm.unipotentAverage_globalPoints_mul0 below · depth 19 - Integrability and summability of adelic Whittaker coefficients over ℚ
AutomorphicForm.whittakerCoefficientIntegrable_and_summable_of_isKfSmooth_of_contDiff12 below · depth 19 - Vanishing of the Whittaker coefficient at g Gᵥ^{-(k+1)}
AutomorphicForm.whittakerCoefficient_mul_heckeGen_pow_inv_eq_zero1 below · depth 19 - Whittaker coefficient: Hecke representatives raise the exponent
AutomorphicForm.whittakerCoefficient_mul_heckeGen_pow_mul_localRepSome_eq1 below · depth 19 - Central step-down of Whittaker coefficients along Hecke powers
AutomorphicForm.whittakerCoefficient_mul_heckeGen_pow_succ_mul_localRepInf_eq0 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 - Hecke coset system for Uᵥ at a place dividing the level
HeckeIntegralSeam.exists_isHeckeCosetSystem_localRepSome_heckeGen_of_dvd0 below · depth 19 - Archimedean derivatives and Casimir commute with Whittaker integration
LanglandsTunnell.isArchSmoothAt_whittakerCoefficient_and_archDerivAt_comm0 below · depth 19 - K_f-smooth functions are right-invariant under a compact subgroup
AutomorphicForm.IsKfSmooth.exists_isCompact_isOpen_eq_inf_forall_apply_mul_eq1 below · depth 20 - Rankin–Selberg package for a pair of cusp realisations
AutomorphicForm.RankinSelberg.exists_testData_analyticOnNhd_sub_mul_peterssonIntegral_and_hasProd_rsEulerPoly_pair593 below · depth 20 - Smoothness and sphericity outside S give right K^S-invariance
AutomorphicForm.apply_mul_eq_of_isKfSmooth_of_forall_placeEmbed_of_mem_maximalCompactAway1 below · depth 20 - Fourier–Whittaker expansion of the Bruhat Eisenstein series
AutomorphicForm.bruhatEisenstein_eq_constantTerm_add_whittakerSum_of_one_lt_re_of_unitary33 below · depth 20 - Analytic continuation and rapid decay of the non-constant part of Eₛ
AutomorphicForm.exists_analyticOnNhd_bruhatEisenstein_sub_constantTerm_norm_le_rpow_neg_of_isArchKFinite_family121 below · depth 20 - Regularised Weyl intertwining integral continues past Re s=1/2
AutomorphicForm.exists_analyticOnNhd_sub_one_half_mul_weylIntertwiningIntegral_isInducedSection_of_isArchKFinite_family65 below · depth 20 - Depth of lower unipotent invariance for translated level-N vectors
AutomorphicForm.exists_depth_forall_apply_mul_lowerUnipotentGL2_eq_of_sum_translate0 below · depth 20 - Flat entire family of induced sections through a given section
AutomorphicForm.exists_flat_isInducedSection_family_eq_of_isInducedSection4 below · depth 20 - Level-adapted test function preserving the archimedean type at w
AutomorphicForm.exists_isFactorizableTestFn_hasArchCharacterAt_rightConv_ne_zero_of_hasArchCharacterAt2 below · depth 20 - Bi-invariant unit-factorizable test function with non-zero convolution
AutomorphicForm.exists_isUnitFactorizableAboveOfType_biInvariant_rightConv_ne_zero_of_mem_archCutSubmodule4 below · depth 20 - Euler factors normalising the Weyl intertwining integral
AutomorphicForm.exists_meromorphicOn_partialEulerProduct_mul_weylIntertwiningIntegral_eq_mul56 below · depth 20 - Non-zero g-independent limit of the normalised intertwining integral
AutomorphicForm.exists_tendsto_tprod_one_sub_absNorm_cpow_mul_weylIntertwiningIntegral_nhds_one_half_of_isArchKFinite_family101 below · depth 20 - Euler product for Whittaker sums of GL₂ Eisenstein families
AutomorphicForm.exists_unitaryChar_entire_partialEulerProduct_mul_eq_tsum_whittakerCoefficient_bruhatEisenstein64 below · depth 20 - Whittaker expansion over principal ideles of a cuspidal function
AutomorphicForm.hasSum_whittakerCoefficient_one_diagOne_principalIdeles_mul23 below · depth 20 - Explicit induced section on adelic GL₂ with prescribed level
AutomorphicForm.isInducedSection_indicator_bottomRow_mul_adelicHeight_cpow4 below · depth 20 - Absolute summability of Whittaker coefficients on GL₂
AutomorphicForm.summable_norm_whittakerCoefficient_of_isKfSmooth_of_contDiff_mixedSpace12 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 - Rankin–Selberg test data: bad part analytic, non-zero at centre
AutomorphicForm.RankinSelberg.exists_testData_sPartIntegral_pair_analyticOnNhd_ne_zero420 below · depth 21 - Moderate growth across the centre of a continued Eisenstein family
AutomorphicForm.exists_analyticOnNhd_sub_mul_bruhatEisenstein_norm_le_archHeight_pow_of_ne_of_isArchKFinite_family163 below · depth 21 - Splitting an adelic GL₂ element along the good places
AutomorphicForm.exists_eq_mul_mem_levelOne_inf_finiteAdelicGL2Subgroup_commute_placeEmbed_of_forall_mem_localIntegralSet0 below · depth 21 - Entire K-finite induced families are combinations of flat families
AutomorphicForm.exists_flat_isInducedSection_sum_eq_of_differentiable_family8 below · depth 21 - Finite expansion of a K-finite smooth function on K
AutomorphicForm.exists_forall_rightTranslate_eq_sum_mul_of_isArchKFinite_of_isKfSmooth2 below · depth 21 - Positive lower bound for (σ-tfrac12)M(σ)φ_σ(1)
AutomorphicForm.exists_pos_eventually_le_re_sub_one_half_mul_weylIntertwiningIntegral_one_of_nonneg_of_isArchKFinite_family18 below · depth 21 - Continuation and decay of Bruhat–Eisenstein Whittaker coefficients
AutomorphicForm.exists_whittakerCoefficient_bruhatEisenstein_continuation_summable_norm_tsum_le_rpow_neg_of_isArchKFinite_family87 below · depth 21 - Vanishing of the isotypic cusp space when v∣ N
AutomorphicForm.isotypicCuspSubmodule_productionPinsOf_principal_eq_bot_of_dvd1 below · depth 21 - Summability of Whittaker coefficients of Bruhat Eisenstein series for Re s>1
AutomorphicForm.summable_whittakerCoefficient_bruhatEisenstein_of_one_lt_re_of_unitary25 below · depth 21 - Leading term at s=1/2 of the Weyl intertwining integral is g-independent
AutomorphicForm.tendsto_sub_one_half_mul_weylIntertwiningIntegral_sub_apply_one_nhds_zero_of_isArchKFinite_family93 below · depth 21 - Factorisation data exist for flat nonzero induced families
EisensteinGeneral.Piece.exists_forall_nonempty_factorizationDatum9 below · depth 21 - Haar splitting of finite-adelic GL₂ at one place
LanglandsTunnell.RankinSelberg.exists_isHaarMeasure_map_eq_prod_localAt1 below · depth 21 - Local-to-adelic transfer of Hecke coset systems away from the level
NumberField.AdelicLevel.isHeckeCosetSystem_padicToAdelic_of_isHeckeCosetSystem_integralSubgroup0 below · depth 21 - Finitely many translates of a K_f-smooth function on a compact set
AutomorphicForm.IsKfSmooth.finite_smul_image_of_isCompact0 below · depth 22 - Export package for translates of a smoothed cuspidal realisation
AutomorphicForm.SmoothCuspRealizationAt.exports_rightConv_sum_translate_of_isCuspConstituent109 below · depth 22 - Deep congruence elements preserve U₁(N)-invariant functions on GL₂(A_K)
AutomorphicForm.apply_mul_eq_of_forall_mem_levelOne_of_valued_sub_one_le0 below · depth 22 - Invariance of a translated level-one function under deep congruence elements
AutomorphicForm.apply_mul_mul_eq_of_forall_mem_levelOne_of_valued_sub_one_le_of_valued_apply_le0 below · depth 22 - Big-cell values of a flat K-finite family as pure tensors
AutomorphicForm.bigCell_eq_sum_pureTensor_of_flat_family6 below · depth 22 - Analytic non-constant part of the Bruhat Eisenstein family
AutomorphicForm.exists_analyticOnNhd_bruhatEisenstein_sub_constantTerm_norm_le_rpow_neg_of_isArchKFinite_family_of_unitary116 below · depth 22 - Regularised Weyl intertwining integral, distinct unitary characters
AutomorphicForm.exists_analyticOnNhd_sub_mul_weylIntertwiningIntegral_isInducedSection_of_ne_of_isArchKFinite_family109 below · depth 22 - Non-vanishing of an induced section on the big cell
AutomorphicForm.exists_apply_weylInv_mul_unipotentGL2_ne_zero_of_isInducedSection_of_isKfSmooth0 below · depth 22 - Adelic GL₂ induced sections with prescribed K-type and support
AutomorphicForm.exists_isInducedSection_one_etaSnd_eq_on_maximalCompact_of_equivariant10 below · depth 22 - Local finite type on K for continuous families on adelic GL₂
AutomorphicForm.exists_isOpen_forall_exists_apply_eq_sum_of_isArchKFinite_of_continuous0 below · depth 22 - Continuation of Whittaker coefficients to Re s>0
AutomorphicForm.exists_whittakerCoefficient_diagOne_continuation_of_flat_family70 below · depth 22 - Fibre-sum spectral comparison for twisted GL₂ at prime degree
AutomorphicForm.fibreSum_twistedCutTrace_eq_const_mul_fibreSum_cutTrace_of_docks_ed23,000 below · depth 22 - Vanishing of level-one isotypic cusp spaces at primes dividing the level
AutomorphicForm.isotypicCuspSubmodule_productionPinsOf_levelOne_eq_bot_of_dvd1 below · depth 22 - Intertwining residue at s=1/2 agrees on the maximal compact
AutomorphicForm.tendsto_sub_one_half_mul_weylIntertwiningIntegral_sub_apply_one_nhds_zero_of_mem_maximalCompact92 below · depth 22 - Finite-place entry bounds for an adelic alignment element
NumberField.AdelicLevel.valued_apply_mul_diagOne_inv_mul_diagOne_mul_le_of_valued_eq0 below · depth 22 - Hecke word comparison of twisted and untwisted cut traces
AutomorphicForm.exists_atoms_forall_exists_noAtomicMass_heckeWordSum_twistedCutTrace_sub_finrank_mul_const_mul_heckeWordSum_cutTrace_eq2,972 below · depth 23 - Formal base change of an Eisenstein Hecke table is Eisenstein
AutomorphicForm.exists_eisensteinTableOf_eq_formalBaseChange_eisensteinTableOf6 below · depth 23 - A K_f-smooth induced section with prescribed level and support
AutomorphicForm.exists_isKfSmooth_eq_prod_localChar_of_borel_fin_of_level5 below · depth 23 - Whittaker coefficients of a Bruhat–Eisenstein family: continuation and decay
AutomorphicForm.exists_whittakerCoefficient_bruhatEisenstein_continuation_summable_norm_tsum_le_rpow_neg_of_isArchKFinite_family_of_unitary87 below · depth 23 - Fibre-sum vanishing from monomial identities at places of record
AutomorphicForm.forall_finset_fibreSum_sub_const_mul_fibreSum_add_eq_zero_of_forall_places_exists_noAtomicMass_wordSum_eq1 below · depth 23 - Satake data constant on fibres over K, given word-shift
AutomorphicForm.satakeData_eq_of_under_eq_of_twistedCutTrace_ne_zero_of_heckeWordShift0 below · depth 23 - Absolute summability of Siegel-pinned cut traces on GL₂
AutomorphicForm.summable_norm_cutTrace_of_isUnitFactorizableOfTypeAt_of_coversModCentre96 below · depth 23 - Satake table of a principal-level cuspidal class lies in a box
AutomorphicForm.table_mem_box_of_mem_cuspClasses_siegel119 below · depth 23 - Hecke tables of cuspidal slab classes lie in the box
AutomorphicForm.table_mem_box_of_mem_cuspClasses_slab18 below · depth 23 - Flat families: intertwining integral residue independent of K-variable
AutomorphicForm.tendsto_sub_one_half_mul_weylIntertwiningIntegral_sub_apply_one_nhds_zero_of_flat_family91 below · depth 23 - Euler-product shape of Whittaker coefficients of a flat Eisenstein family
AutomorphicForm.whittakerCoefficient_bruhatEisenstein_diagOne_eq_cpowChar_mul_sum_eulerProduct_of_flat_family57 below · depth 23 - Hecke generator inverse double-coset relation at level U₁(N)
NumberField.AdelicLevel.exists_heckeGen_inv_eq_centralScalar_mul_mul_heckeGen_mul_levelOne1 below · depth 23 - Double-coset inversion relation for Hecke generators at principal level
NumberField.AdelicLevel.exists_heckeGen_inv_eq_centralScalar_mul_mul_heckeGen_mul_principalLevel1 below · depth 23 - Hecke words and slot-family combinations are matching at S_K∪ T
AutomorphicForm.areMatchingAt_union_heckeWord_sum_slotFamilyCoeff_mul_of_areMatchingAt78 below · depth 24 - Twisted geometric remainder minus [L:K]λ times slot sum: cylinder-small functional
AutomorphicForm.exists_continuous_noAtomicMass_twistedGeometricRemainder_sub_finrank_mul_const_mul_sum_eq1,677 below · depth 24 - Uniform level for a flat family of induced sections
AutomorphicForm.exists_forall_apply_mul_eq_of_mem_maximalCompactAway_of_flat_family3 below · depth 24 - Continuation of Whittaker coefficients of a unitary flat Eisenstein family
AutomorphicForm.exists_whittakerCoefficient_diagOne_continuation_of_flat_family_of_unitary70 below · depth 24 - Right translation by a maximal compact element preserves flat families
AutomorphicForm.flat_family_comp_mul_of_mem_adelicMaximalCompact0 below · depth 24 - Per-word twisted spectral comparison from the remainder rows
AutomorphicForm.heckeWordSum_twistedCutTrace_sub_const_mul_heckeWordSum_cutTrace_add_atoms_eq_of_remainder_rows_of_comparison194 below · depth 24 - Flat families: intertwining integral residue at 1/2 is K_∞-invariant
AutomorphicForm.tendsto_sub_one_half_mul_weylIntertwiningIntegral_sub_nhds_zero_of_flat_family_of_mem_maximalCompactAt_empty79 below · depth 24 - Leading term at s=1/2 of intertwining integral is Kᵥ-invariant
AutomorphicForm.tendsto_sub_one_half_mul_weylIntertwiningIntegral_sub_nhds_zero_of_flat_family_of_mem_maximalCompactAt_singleton73 below · depth 24 - Inverse of the Hecke generator in its level-N double coset
NumberField.AdelicLevel.exists_heckeGen_inv_eq_centralScalar_mul_mul_heckeGen_mul_levelOne_and_mul_det_eq_one0 below · depth 24 - Hecke generator inverse in a central-times-level double coset
NumberField.AdelicLevel.exists_heckeGen_inv_eq_centralScalar_mul_mul_heckeGen_mul_of_forall_finEmbed_localEmbed_mem0 below · depth 24 - Comparison of parabolic intercepts along Hecke words, uniform λ
AutomorphicForm.exists_continuous_noAtomicMass_intercept_parabolic_sub_finrank_mul_const_mul_sum_intercept_parabolic_eq_uniform1,673 below · depth 25 - Peeling one archimedean place off a maximal compact element
AutomorphicForm.exists_eq_mul_archSupportedAt_of_mem_maximalCompactAt_empty0 below · depth 25 - Coarse geometric expansion of the truncated GL₂ kernel integral
AutomorphicForm.exists_forall_le_setIntegral_lambdaT_adelicKernel_sub_centralElliptic_eq_setIntegral_parabolic94 below · depth 25 - Coarse geometric expansion of the truncated twisted GL₂ kernel
AutomorphicForm.exists_forall_le_setIntegral_lambdaT_twistedAdelicKernel_sub_centralElliptic_eq_setIntegral_parabolic157 below · depth 25 - Absolute summability of cut traces over Siegel-pinned cusp classes
AutomorphicForm.summable_norm_cutTrace_of_isUnitFactorizableOfTypeAt_of_coversModCentre_of_subset96 below · depth 25 - Leading term at s=1/2 unchanged by a local Weyl translation
AutomorphicForm.tendsto_sub_one_half_mul_weylIntertwiningIntegral_localWeyl_sub_nhds_zero_of_flat_family69 below · depth 25 - Intertwining residue unchanged by isometry at one archimedean place
AutomorphicForm.tendsto_sub_one_half_mul_weylIntertwiningIntegral_sub_nhds_zero_of_flat_family_of_archSupportedAt76 below · depth 25 - Whittaker coefficients of a flat unitary Eisenstein family along the torus
AutomorphicForm.whittakerCoefficient_bruhatEisenstein_diagOne_eq_cpowChar_mul_sum_eulerProduct_of_flat_family_of_unitary58 below · depth 25 - Bruhat–Möbius relation at one archimedean place
AutomorphicForm.apply_weylInv_unipotent_mul_archSupportedAt_eq_norm_cpow_mul_apply2 below · depth 26 - Analytic continuation of the Eisenstein and intertwining families
AutomorphicForm.exists_analyticOnNhd_axis_continuation_bruhatEisenstein_weylIntertwiningIntegral_of_isArchKFinite_family207 below · depth 26 - Truncated hyperbolic terms compared with a uniform slope λ
AutomorphicForm.exists_continuous_noAtomicMass_integrableOn_and_hyperbolicTerm_sub_finrank_mul_const_mul_sum_eq_of_areMatchingAt_uniform1,509 below · depth 26 - Matched unipotent terms: affine in R with atom-free remainder
AutomorphicForm.exists_continuous_noAtomicMass_integrableOn_and_unipotentTerm_sub_const_mul_sum_eq_of_areMatchingAt362 below · depth 26 - 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 - Truncated parabolic term splits into hyperbolic and unipotent cells
AutomorphicForm.exists_forall_le_integrableOn_and_setIntegral_parabolic_eq_hyperbolicCell_add_unipotentCell94 below · depth 26 - Hyperbolic–unipotent splitting of the truncated twisted parabolic term
AutomorphicForm.exists_forall_le_integrableOn_and_setIntegral_twistedParabolic_eq_hyperbolicCell_add_unipotentCell166 below · depth 26 - Integrability of the centre-folded truncated GL₂ adelic kernel
AutomorphicForm.exists_forall_le_integrableOn_setIntegral_mul_lambdaT_adelicKernel_of_isTruncationDatum82 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 - Asymptotically affine truncated parabolic term, unit-factorizable f
AutomorphicForm.exists_tendsto_setIntegral_lambdaT_adelicKernel_sub_centralElliptic_sub_affine_atTop_of_isUnitFactorization399 below · depth 26 - Finiteness of continuous idele class characters of square ξ and level N
AutomorphicForm.finite_setOf_squaresToXi_continuous_apply_det_eq_one_of_mem_principalLevel5 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 - 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 - Continuation of the non-constant part of the GL₂ Eisenstein family
AutomorphicForm.exists_analyticOnNhd_continuation_bruhatEisenstein_sub_constantTerm_of_re_nonneg_of_isArchKFinite_family153 below · depth 27 - Continuation of the GL₂ intertwining integral off one point
AutomorphicForm.exists_analyticOnNhd_continuation_weylIntertwiningIntegral_of_re_nonneg_of_isArchKFinite_family138 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 - Affine shape of base-changed unipotent terms along Hecke words
AutomorphicForm.exists_clm_noAtomicMass_forall_sum_slotFamilyCoeff_mul_setIntegral_unipotentCell_eq_mul_add277 below · depth 27 - A uniform transfer constant in the hyperbolic-term base-change comparison
AutomorphicForm.exists_const_forall_exists_windingDatum_integrableOn_and_hyperbolicTerm_sub_finrank_mul_const_mul_sum_eq_mul_sum_coeff_add_sum_coeff_of_areMatchingAt1,495 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 - Integrability of the truncated hyperbolic and unipotent kernels
AutomorphicForm.exists_forall_le_integrableOn_hyperbolicCell_and_unipotentCell_sub_indicator_constantTerm91 below · depth 27 - Integrability of the truncated twisted hyperbolic and unipotent kernels
AutomorphicForm.exists_forall_le_integrableOn_twistedHyperbolicCell_and_twistedUnipotentCell_sub_indicator_constantTerm162 below · depth 27 - Pointwise cell decomposition of the truncated GL₂ adelic kernel
AutomorphicForm.exists_forall_le_lambdaT_adelicKernel_eq_centralElliptic_add_unipotentCell_add_hyperbolicCell4 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 - Polynomial sup-norm bound on compacta for Casimir-eigen cusp forms
AutomorphicForm.exists_forall_norm_le_mul_rpow_mul_eLpNorm_of_mem_isotypicCuspSubmodule_principal_of_archCasimir_eq_smul_of_isCompact391 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 - A common coset system for U₁(N) and K(N) at v ∤ N
AutomorphicForm.exists_isHeckeCosetSystem_levelOne_and_principalLevel_heckeGen_of_not_dvd1 below · depth 27
… and 330 more statements (search for the module name to find them).