Definitions/Def_AutomorphicForm_ArchKFinite.lean
Archimedean -finiteness for functions on adelic
Three predicates are introduced. First, for a group G, a subgroup K \le G and a function f : G \to \mathbb{C}, RightTranslatesSpanFinite K f asserts the existence of a finite family s of functions G \to \mathbb{C} such that for every k \in K the right translate x \mapsto f(xk) lies in the \mathbb{C}-linear span of s; note that the spanning family is an arbitrary finite set of functions, not required to consist of translates of f. Two elementary instances are recorded: constant functions satisfy this for any K (with s the singleton consisting of that constant), and every f satisfies it for K = \bot.
Second, for a number field F and an infinite place w, archRowIsometrySubgroup F w is the image in \mathrm{GL}_2(\mathbb{A}_F), under the place-w inclusion adelicArchGLInclAt F w (identity at all other archimedean components and at the finite part), of rowIsometrySubgroup w.Completion, the subgroup of those k \in \mathrm{GL}_2(F_w) with \|\det k\| = 1 for which right multiplication by k preserves \|x\|^2 + \|y\|^2 on row vectors (x,y).
Third, IsArchKFiniteAt F w φ is RightTranslatesSpanFinite for this subgroup and a function \varphi : \mathrm{GL}_2(\mathbb{A}_F) \to \mathbb{C}, and IsArchKFinite F φ requires it at every infinite place w simultaneously — a place-by-place condition rather than one formulated for the full product over the archimedean places. Constants, and in particular the zero function, are K-finite in this sense. The substantive inhabitant is isArchKFinite_of_hasArchType: if \varphi transforms by a character \chi_w of rowIsometrySubgroup w.Completion under right translation at each w, in the sense of HasArchType F χ φ, then all its translates lie in the line spanned by \varphi itself.
Relation to Mathlib
The adele ring, infinite places and their completions are Mathlib's; the K-finiteness predicates, and the subgroups of norm-preserving matrices used in place of a maximal compact subgroup, are the project's own.
Where it is used
This is the archimedean finiteness condition entering the project's notion of an automorphic form on \mathrm{GL}_2 over a number field, alongside the invariance, central-character and growth or integrability conditions formulated in the neighbouring modules on L^2 and windowed Siegel sets.
References
- D. Bump, Automorphic Forms and Representations, Cambridge Studies in Advanced Mathematics 55, Cambridge University Press, 1997
- A. Borel and H. Jacquet, Automorphic forms and automorphic representations, in: Automorphic Forms, Representations and L-functions, Proceedings of Symposia in Pure Mathematics 33, American Mathematical Society, 1979, 189–202
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 70 lines
- 9 declarations
- used in the statements of 374 theorems and imported by 357 proofs
- imports 1 definition modules
Source file: Definitions/Def_AutomorphicForm_ArchKFinite.lean
Imports
Imported by
- no other definition module
Declarations
- def
AutomorphicForm.RightTranslatesSpanFinite - theorem
AutomorphicForm.rightTranslatesSpanFinite_const - theorem
AutomorphicForm.rightTranslatesSpanFinite_bot - def
AutomorphicForm.archRowIsometrySubgroup - def
AutomorphicForm.IsArchKFiniteAt - def
AutomorphicForm.IsArchKFinite - theorem
AutomorphicForm.isArchKFinite_const - theorem
AutomorphicForm.isArchKFinite_zero - theorem
AutomorphicForm.isArchKFinite_of_hasArchType
Source
import Definitions.Def_AutomorphicForm_ArchType open AutomorphicForm AutomorphicForm.WindowedSiegel NumberField IsDedekindDomain Matrix set_option autoImplicit false noncomputable section namespace AutomorphicForm section Generic variable {G : Type*} [Group G] def RightTranslatesSpanFinite (K : Subgroup G) (f : G → ℂ) : Prop := ∃ s : Finset (G → ℂ), ∀ k ∈ K, (fun x => f (x * k)) ∈ Submodule.span ℂ (s : Set (G → ℂ)) theorem rightTranslatesSpanFinite_const (K : Subgroup G) (c : ℂ) : RightTranslatesSpanFinite K (fun _ : G => c) := by refine ⟨{fun _ => c}, fun k _hk => ?_⟩ exact Submodule.subset_span (Finset.mem_coe.mpr (Finset.mem_singleton_self _)) theorem rightTranslatesSpanFinite_bot (f : G → ℂ) : RightTranslatesSpanFinite (⊥ : Subgroup G) f := by refine ⟨{f}, fun k hk => ?_⟩ rw [Subgroup.mem_bot] at hk; subst hk have h1 : (fun x : G => f (x * 1)) = f := by funext x; rw [mul_one] rw [h1] exact Submodule.subset_span (Finset.mem_coe.mpr (Finset.mem_singleton_self _)) end Generic section Arch variable (F : Type) [Field F] [NumberField F] def archRowIsometrySubgroup (w : InfinitePlace F) : Subgroup (AdelicGL2 (𝓞 F) F) := (rowIsometrySubgroup w.Completion).map (adelicArchGLInclAt F w) def IsArchKFiniteAt (w : InfinitePlace F) (φ : AdelicGL2 (𝓞 F) F → ℂ) : Prop := RightTranslatesSpanFinite (archRowIsometrySubgroup F w) φ def IsArchKFinite (φ : AdelicGL2 (𝓞 F) F → ℂ) : Prop := ∀ w : InfinitePlace F, IsArchKFiniteAt F w φ theorem isArchKFinite_const (c : ℂ) : IsArchKFinite F (fun _ => c) := fun w => rightTranslatesSpanFinite_const (archRowIsometrySubgroup F w) c theorem isArchKFinite_zero : IsArchKFinite F (fun _ => (0 : ℂ)) := isArchKFinite_const F 0 theorem isArchKFinite_of_hasArchType (χ : ∀ w : InfinitePlace F, rowIsometrySubgroup w.Completion →* ℂˣ) (φ : AdelicGL2 (𝓞 F) F → ℂ) (hφ : HasArchType F χ φ) : IsArchKFinite F φ := by intro w refine ⟨{φ}, ?_⟩ rintro _ ⟨k, hk, rfl⟩ have hχ : (fun x => φ (x * adelicArchGLInclAt F w (k : GL (Fin 2) w.Completion))) = ((χ w ⟨k, hk⟩ : ℂˣ) : ℂ) • φ := by funext x exact hφ w ⟨k, hk⟩ x rw [hχ] exact Submodule.smul_mem _ _ (Submodule.subset_span (Finset.mem_coe.mpr (Finset.mem_singleton_self _))) end Arch end AutomorphicForm
Statements phrased using this module (374)
- Archimedean-finite smoothing inside an isotypic cusp space
AutomorphicForm.exists_isArchKFinite_tendsto_and_setLIntegral_le_of_mem_isotypicCuspSubmodule18 below · depth 16 - Siegel window mass bounded by fundamental domain mass
AutomorphicForm.exists_window_mass_le_mul_domain_mass_of_isArchKFinite_of_mem_isotypicCuspSubmodule490 below · depth 16 - K-finite approximate identity on the archimedean maximal compact subgroup
AutomorphicForm.exists_kernel_concentrating_translatesSpanFinite_maximalCompactAt0 below · depth 17 - Compact averaging preserves isotypy, gives K-finiteness, decreases mass
AutomorphicForm.mem_isotypicCuspSubmodule_and_isArchKFinite_and_setLIntegral_le_of_integral_maximalCompactAtHaar_mul15 below · depth 17 - Pointwise convergence of averages against concentrating kernels
AutomorphicForm.tendsto_integral_maximalCompactAtHaar_mul_of_concentrating0 below · depth 17 - 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 - Averaging over the maximal compact preserves the isotypic cusp space
AutomorphicForm.integral_maximalCompactAtHaar_mul_mem_isotypicCuspSubmodule13 below · depth 18 - Archimedean K-finiteness of kernel averages over K_∞
AutomorphicForm.isArchKFinite_integral_maximalCompactAtHaar_mul_of_translatesSpanFinite0 below · depth 18 - Jensen bound for averaging over the archimedean maximal compact
AutomorphicForm.setLIntegral_nnnorm_integral_maximalCompactAtHaar_mul_sq_le_of_isFundamentalDomain11 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 - 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 - 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 - Averaging over the maximal compact preserves cuspidality
AutomorphicForm.isCuspidalFn_integral_maximalCompactAtHaar_mul_of_isCuspidalFn0 below · depth 19 - Rankin–Selberg package for a pair of cusp realisations
AutomorphicForm.RankinSelberg.exists_testData_analyticOnNhd_sub_mul_peterssonIntegral_and_hasProd_rsEulerPoly_pair593 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 - Flat entire family of induced sections through a given section
AutomorphicForm.exists_flat_isInducedSection_family_eq_of_isInducedSection4 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 - Explicit induced section on adelic GL₂ with prescribed level
AutomorphicForm.isInducedSection_indicator_bottomRow_mul_adelicHeight_cpow4 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 - 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 - 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 - Non-vanishing of an archimedean Rankin–Selberg torus pairing
AutomorphicForm.RankinSelberg.exists_archTranslate_isArchKFinite_equivariant_integral_mul_torusIntegral_whittakerCoefficient_ne_zero30 below · depth 22 - Non-vanishing Rankin–Selberg torus pairing against a non-negative K-finite datum
AutomorphicForm.RankinSelberg.exists_archTranslate_isArchKFinite_equivariant_nonneg_integral_mul_torusIntegral_whittakerCoefficient_ne_zero_of_eq_one31 below · depth 22 - Export package for translates of a smoothed cuspidal realisation
AutomorphicForm.SmoothCuspRealizationAt.exports_rightConv_sum_translate_of_isCuspConstituent109 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 - 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 - Polynomial decay of adelic Weyl–unipotent integrals, unitary twists
AutomorphicForm.norm_integral_weyl_unipotent_mul_addChar_le_polyDecay_of_unitary21 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 - Archimedean induced section at (1,ν) with prescribed K_∞-type
AutomorphicForm.exists_continuous_isArchKFinite_eq_of_borel_arch_of_equivariant5 below · depth 23 - Non-vanishing pairing of a ν-covariant kernel with an arch-finite function
AutomorphicForm.exists_isArchKFinite_equivariant_integral_maximalCompactAtHaar_mul_ne_zero2 below · depth 23 - Non-negative K_∞-finite function pairing non-trivially with β
AutomorphicForm.exists_isArchKFinite_invariant_nonneg_integral_maximalCompactAtHaar_mul_ne_zero2 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 - 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 - Continuous kernel orthogonal to all arch. K-finite functions vanishes
AutomorphicForm.eq_zero_of_continuous_of_forall_isArchKFinite_integral_maximalCompactAtHaar_mul_eq_zero1 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 - 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 - Peeling one archimedean place off a maximal compact element
AutomorphicForm.exists_eq_mul_archSupportedAt_of_mem_maximalCompactAt_empty0 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 - 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 - 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 - 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 - Finite-dimensionality of K-finite induced sections at principal level
AutomorphicForm.finiteDimensional_span_setOf_isInducedSection_principalLevel_archCutSubmodule4 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 - Entire L-normalised Whittaker terms of the Bruhat–Eisenstein family
AutomorphicForm.exists_entire_whittakerCoefficient_bruhatEisenstein_continuation_summable_norm_tsum_le_rpow_neg_of_isArchKFinite_family_of_unitary93 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 - Flat K-finite induced sections as L^S times Godement sections
AutomorphicForm.exists_sum_mul_godementSection_eq_partialEulerProduct_mul_of_flat_family25 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 - Holomorphy and joint continuity of the intertwining integral for Re s > 1/2
AutomorphicForm.analyticOnNhd_and_continuousOn_weylIntertwiningIntegral_family_of_re_gt_half81 below · depth 29 - 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 - Entire normalisation of the non-constant term of an Eisenstein family
AutomorphicForm.exists_entire_eq_mul_bruhatEisenstein_sub_constantTerm_norm_le_rpow_neg_of_isArchKFinite_family_of_unitary108 below · depth 29 - Entire continuation of normalised Whittaker coefficients of flat Eisenstein families
AutomorphicForm.exists_entire_whittakerCoefficient_diagOne_continuation_of_flat_family_of_unitary76 below · depth 29 - Flat family through a K-finite induced section
AutomorphicForm.exists_family_forall_isInducedSection_and_eq_of_isArchKFinite_of_isKfSmooth4 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 - Archimedean Godement sections realise K_∞-finite functions on GL₂
AutomorphicForm.exists_sum_mul_prod_localZeta_bottomRow_eq_of_isArchKFinite12 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 - Uniform pure-tensor big-cell expansion of flat induced families
AutomorphicForm.bigCell_eq_sum_pureTensor_of_flat_family_of_restrict_eq9 below · depth 30 - Big-cell pure-tensor decomposition with archimedean type parity
AutomorphicForm.bigCell_eq_sum_pureTensor_of_flat_family_of_type_parity6 below · depth 30 - Rapid decay of the Bruhat Eisenstein series minus its constant term
AutomorphicForm.bruhatEisenstein_sub_constantTerm_isRapidlyDecreasingOn20 below · depth 30 - 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 - Entire Whittaker coefficients of the GL₂ Bruhat Eisenstein family
AutomorphicForm.exists_entire_whittakerCoefficient_bruhatEisenstein_eq_eulerProduct_mul_summable_norm_tsum_le_rpow_neg_of_isArchKFinite_family_of_unitary89 below · depth 30 - Arch-K-finite forms on K_∞ as sums of local products
AutomorphicForm.exists_eq_sum_prod_archComponent_of_isArchKFinite0 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 - 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
… and 224 more statements (search for the module name to find them).