Definitions/Def_AutomorphicForm_FactorizableTestFn.lean
Factorizable test functions on adelic
Let F be a field, later a number field, with adele ring \mathbb{A}_F = F_\infty \times \mathbb{A}_F^{\mathrm{f}} written in Lean as a product of InfiniteAdeleRing F and FiniteAdeleRing (𝓞 F) F, and let AdelicLevel.glArch and AdelicLevel.glFin be the group homomorphisms \mathrm{GL}_2(\mathbb{A}_F) \to \mathrm{GL}_2(F_\infty) and \mathrm{GL}_2(\mathbb{A}_F) \to \mathrm{GL}_2(\mathbb{A}_F^{\mathrm{f}}) obtained by applying the two coordinate projections entrywise. First, archEntries F g records the four entries of g \in \mathrm{GL}_2(F_\infty) transported into the mixed space \prod_{w \text{ real}} \mathbb{R} \times \prod_{w \text{ complex}} \mathbb{C} along InfiniteAdeleRing.ringEquiv_mixedSpace, as a function \mathrm{Fin}\,2 \to \mathrm{Fin}\,2 \to mixed space; archEntries_apply states this entrywise description.
Three predicates are then defined. IsArchTestFactor F fa, for fa : \mathrm{GL}_2(F_\infty) \to \mathbb{C}, asserts two things: that there exists \Phi on the space of 2 \times 2 matrices over the mixed space which is C^\infty as a map of real vector spaces and satisfies fa(g) = \Phi(\mathrm{archEntries}\,F\,g) for all g; and that fa has compact support. Thus smoothness is formulated as smoothness of a chosen extension in the matrix entries. IsFinTestFactor F ff, for ff on \mathrm{GL}_2(\mathbb{A}_F^{\mathrm{f}}), asserts that ff is locally constant and has compact support. IsFactorizableTestFn F f, for f on \mathrm{GL}_2(\mathbb{A}_F), asserts the existence of an archimedean test factor fa and a finite test factor ff with f(g) = fa(g_\infty)\, ff(g_{\mathrm{f}}) for every g, the components being taken via glArch and glFin.
The remaining declarations record that the zero function belongs to each of the three classes, and that any function factoring in this way vanishes at g as soon as one of the two factors vanishes at the corresponding component of g.
Relation to Mathlib
Smoothness (ContDiff), local constancy (IsLocallyConstant), compact support (HasCompactSupport) and the adele rings are Mathlib's; the classes of archimedean, finite and factorizable test functions on adelic \mathrm{GL}_2 are the project's own.
Where it is used
These classes provide the test functions used in the project's adelic analysis on \mathrm{GL}_2, where convolution operators and automorphic kernels \sum_\gamma f(x^{-1}\gamma y) are built from a smooth compactly supported archimedean factor and a locally constant compactly supported factor at the finite places.
References
- S. Gelbart, Automorphic Forms on Adele Groups, Annals of Mathematics Studies 83, Princeton University Press, 1975
- D. Bump, Automorphic Forms and Representations, Cambridge Studies in Advanced Mathematics 55, Cambridge University Press, 1997
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 67 lines
- 10 declarations
- used in the statements of 435 theorems and imported by 480 proofs
- imports 1 definition modules
Source file: Definitions/Def_AutomorphicForm_FactorizableTestFn.lean
Imports
Declarations
- def
AutomorphicForm.archEntries - theorem
AutomorphicForm.archEntries_apply - def
AutomorphicForm.IsArchTestFactor - theorem
AutomorphicForm.isArchTestFactor_zero - def
AutomorphicForm.IsFinTestFactor - def
AutomorphicForm.IsFactorizableTestFn - theorem
AutomorphicForm.isFinTestFactor_zero - theorem
AutomorphicForm.isFactorizableTestFn_zero - theorem
AutomorphicForm.IsFactorizableTestFn.eq_zero_of_glArch - theorem
AutomorphicForm.IsFactorizableTestFn.eq_zero_of_glFin
Source
import Definitions.Def_NumberField_AdelicLevel import Mathlib.Analysis.Calculus.ContDiff.Defs ↗ import Mathlib.Topology.LocallyConstant.Basic ↗ open NumberField IsDedekindDomain noncomputable section open scoped Classical namespace AutomorphicForm variable (F : Type) [Field F] def archEntries (g : GL (Fin 2) (InfiniteAdeleRing F)) : Fin 2 → Fin 2 → mixedEmbedding.mixedSpace F := fun i j => InfiniteAdeleRing.ringEquiv_mixedSpace F ((g : Matrix (Fin 2) (Fin 2) (InfiniteAdeleRing F)) i j) theorem archEntries_apply (g : GL (Fin 2) (InfiniteAdeleRing F)) (i j : Fin 2) : archEntries F g i j = InfiniteAdeleRing.ringEquiv_mixedSpace F ((g : Matrix (Fin 2) (Fin 2) (InfiniteAdeleRing F)) i j) := rfl variable [NumberField F] def IsArchTestFactor (fa : GL (Fin 2) (InfiniteAdeleRing F) → ℂ) : Prop := (∃ Φ : (Fin 2 → Fin 2 → mixedEmbedding.mixedSpace F) → ℂ, ContDiff ℝ (⊤ : ℕ∞) Φ ∧ ∀ g, fa g = Φ (archEntries F g)) ∧ HasCompactSupport fa theorem isArchTestFactor_zero : IsArchTestFactor F (fun _ => 0) := ⟨⟨fun _ => 0, contDiff_const, fun _ => rfl⟩, HasCompactSupport.zero⟩ def IsFinTestFactor (ff : GL (Fin 2) (FiniteAdeleRing (𝓞 F) F) → ℂ) : Prop := IsLocallyConstant ff ∧ HasCompactSupport ff def IsFactorizableTestFn (f : GL (Fin 2) (AdeleRing (𝓞 F) F) → ℂ) : Prop := ∃ (fa : GL (Fin 2) (InfiniteAdeleRing F) → ℂ) (ff : GL (Fin 2) (FiniteAdeleRing (𝓞 F) F) → ℂ), IsArchTestFactor F fa ∧ IsFinTestFactor F ff ∧ ∀ g, f g = fa (AdelicLevel.glArch (𝓞 F) F g) * ff (AdelicLevel.glFin (𝓞 F) F g) theorem isFinTestFactor_zero : IsFinTestFactor F (fun _ => 0) := ⟨IsLocallyConstant.const 0, HasCompactSupport.zero⟩ theorem isFactorizableTestFn_zero : IsFactorizableTestFn F (fun _ => 0) := ⟨fun _ => 0, fun _ => 0, isArchTestFactor_zero F, isFinTestFactor_zero F, fun _ => (mul_zero _).symm⟩ theorem IsFactorizableTestFn.eq_zero_of_glArch {f : GL (Fin 2) (AdeleRing (𝓞 F) F) → ℂ} {fa : GL (Fin 2) (InfiniteAdeleRing F) → ℂ} {ff : GL (Fin 2) (FiniteAdeleRing (𝓞 F) F) → ℂ} (hf : ∀ g, f g = fa (AdelicLevel.glArch (𝓞 F) F g) * ff (AdelicLevel.glFin (𝓞 F) F g)) {g : GL (Fin 2) (AdeleRing (𝓞 F) F)} (hg : fa (AdelicLevel.glArch (𝓞 F) F g) = 0) : f g = 0 := by rw [hf g, hg, zero_mul] theorem IsFactorizableTestFn.eq_zero_of_glFin {f : GL (Fin 2) (AdeleRing (𝓞 F) F) → ℂ} {fa : GL (Fin 2) (InfiniteAdeleRing F) → ℂ} {ff : GL (Fin 2) (FiniteAdeleRing (𝓞 F) F) → ℂ} (hf : ∀ g, f g = fa (AdelicLevel.glArch (𝓞 F) F g) * ff (AdelicLevel.glFin (𝓞 F) F g)) {g : GL (Fin 2) (AdeleRing (𝓞 F) F)} (hg : ff (AdelicLevel.glFin (𝓞 F) F g) = 0) : f g = 0 := by rw [hf g, hg, mul_zero] end AutomorphicForm end
Statements phrased using this module (435)
- Right convolution by a factorizable test function: continuity and Cᵈ⁺¹ regularity
AutomorphicForm.continuous_rightConv_and_contDiff_of_isFactorizableTestFn2 below · depth 14 - Non-vanishing right convolution with a level-N factorisable test function
AutomorphicForm.exists_isFactorizableTestFn_rightConv_ne_zero_of_levelOne_invariant1 below · depth 14 - Right convolution of a cuspidal function is Siegel-window bounded
AutomorphicForm.isBoundedOnSiegelWindows_rightConv_of_isCuspAutomorphicFnAt_of_coversModCentre70 below · depth 14 - Right convolution preserves cuspidality, smoothness, level and Hecke eigenvalues
AutomorphicForm.isCuspidalFn_isKfSmooth_levelInvariant_isHeckeCosetEigenfunctionAt_rightConv_of_isFactorizableTestFn_of_support_subset2 below · depth 14 - Factorisable test functions are continuous and compactly supported
AutomorphicForm.continuous_and_hasCompactSupport_of_isFactorizableTestFn0 below · depth 15 - High-height boundedness of a smoothed cuspidal function
AutomorphicForm.exists_norm_rightConv_mul_le_of_lt_localHeight_of_isCuspAutomorphicFnAt_of_coversModCentre67 below · depth 15 - Factorizable test functions are stable under left translation
AutomorphicForm.isFactorizableTestFn_comp_inv_mul_of_isFactorizableTestFn0 below · depth 16 - Decay of rational unipotent sums minus box average in Siegel sets
AutomorphicForm.norm_tsum_sub_average_le_mul_inv_archHeight_pow_of_isFactorizableTestFn57 below · depth 16 - Niceness of the pinned Rankin–Selberg datum of a cubic twist
LanglandsTunnell.RankinSelberg.isNicePinned_rsDatum_of_centralInduced_of_localWhittaker_of_not_exists_eq_pow_inertiaDeg_of_normPin_archTrivial2,488 below · depth 16 - Archimedean parameters and Whittaker factorisation of a cusp realisation over ℚ
LanglandsTunnell.exists_realArchParam_whittaker_factorization_apply_one_ne_zero_localSpaceAt_of_continuous_realization450 below · depth 16 - Upper-triangular global matrices preserve the adelic height
NumberField.AdelicHeight.adelicHeight_globalPoints_mul_of_apply_one_zero_eq_zero0 below · depth 16 - Bounded distortion of the adelic height by compact right translation
NumberField.AdelicHeight.exists_forall_mul_adelicHeight_le_adelicHeight_mul_of_isCompact0 below · depth 16 - Unipotent slices of factorizable test functions are pure tensors
AutomorphicForm.IsFactorizableTestFn.comp_mul_unipotentGL2_mul_mem_pureTensorSet0 below · depth 17 - Finiteness of Haar measure of a slab fundamental domain
AutomorphicForm.adelicGLHaar_inter_setOf_ideleNorm_det_mem_Icc_lt_top_of_isFundamentalDomain15 below · depth 17 - Entirety of the global Whittaker zeta integral on GL₂
AutomorphicForm.exists_differentiable_forall_integral_zetaIntegrand_whittakerCoefficient_unipotentAverage_eq141 below · depth 17 - Decay bound for cuspidal functions on a centre-cut Siegel window
AutomorphicForm.exists_forall_norm_le_mul_prod_rpow_neg_of_hasDerivAt_chains_of_constantTerm_eq_zero_of_mem_idealBall32 below · depth 17 - Uniform bound for right convolution on centre-cut Siegel windows
AutomorphicForm.exists_forall_norm_rightConv_le_mul_eLpNorm_of_isLsXiFunction_of_isCuspidalFn_of_isFundamentalDomain72 below · depth 17 - Moderate growth in det of a smoothed adelic cusp form
AutomorphicForm.exists_norm_rightConv_le_mul_max_ideleNorm_det_pow81 below · depth 17 - Smoothing a cusp realization by convolution with a test function
AutomorphicForm.exists_smoothCuspRealizationAt_toFun_eq_rightConv_of_isArithGenuineCuspRealizable79 below · depth 17 - An entire, non-vanishing S-part torus zeta integral
AutomorphicForm.exists_unipotentAverage_rightConv_sPart_zetaIntegrand_entire_ne_zero118 below · depth 17 - Smooth functions supported on invertible entry matrices give archimedean test factors
AutomorphicForm.isArchTestFactor_of_contDiff_of_hasCompactSupport_of_tsupport_subset_isUnit_det0 below · depth 17 - Transfer of unramified Whittaker data to a Schwartz–Bruhat average
AutomorphicForm.whittakerCoefficient_unipotentAverage_unramified_package84 below · depth 17 - Entire pair for the cubic Rankin–Selberg datum
LanglandsTunnell.RankinSelberg.exists_entire_boundedOnStrips_eq_archFactor_mul_lFun_rsDatum_of_le_conductorExponentAt_of_centralInduced_of_localSpaceAt_of_normPin_archTrivial2,487 below · depth 17 - Well-formedness, convergence and positive conductor for a twisted Rankin–Selberg datum
LanglandsTunnell.RankinSelberg.wellFormed_and_converges_rsDatum_and_finiteConductor_pos_of_le_conductorExponentAt_of_not_exists_eq_pow_inertiaDeg30 below · depth 17 - Minimal-weight Casimir eigenvector inside one cuspidal constituent
LanglandsTunnell.exists_archCasimir_eigenvector_minimalWeight_mem_isCuspConstituent_whittaker_diagOne_ne_zero_of_continuous_realization408 below · depth 17 - Weight family and Whittaker factorisation with C(1,1)≠ 0
LanglandsTunnell.exists_whittaker_factorization_apply_one_ne_zero_localSpaceAt_of_archCasimir_eigenvector_minimalWeight373 below · depth 17 - Whittaker factorisation at an odd principal archimedean parameter over ℚ
LanglandsTunnell.exists_whittaker_factorization_apply_one_ne_zero_localSpaceAt_of_archCasimir_eigenvector_weightOne_of_ne370 below · depth 17 - Level-and-type cut distributes over finite sums of cusp subrepresentations
AutomorphicForm.CuspidalConstituent.iSup_inf_levelInvariantSubmodule_inf_archCutSubmodule_le6 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 - Paired Whittaker coefficients follow the Hecke recursion at good places
AutomorphicForm.SmoothCuspRealizationAt.whittakerCoefficient_heckeGen_pow_mul_conj_eq_heckeRecursionSeq_mul_of_rightConv_sum_translate_pair14 below · depth 18 - Continuity of the unipotent average of φ * f
AutomorphicForm.continuous_unipotentAverage_rightConv87 below · depth 18 - Half-plane convergence of the GL(2) Whittaker zeta integral
AutomorphicForm.exists_forall_integrable_zetaIntegrand_whittakerCoefficient_unipotentAverage116 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 - Smoothed cusp forms are bounded on determinant slabs
AutomorphicForm.exists_forall_norm_rightConv_le_of_ideleNorm_det_mem_Icc78 below · depth 18 - Whittaker coefficients on a window vanish outside one fractional ideal
AutomorphicForm.exists_fractionalIdeal_forall_whittakerCoefficient_eq_zero_of_not_mem_of_forall_mul_idealBall_eq15 below · depth 18 - Conjugation-invariant smooth bump with prescribed inversion symmetry
AutomorphicForm.exists_isArchTestFactor_nonneg_and_tsupport_subset_and_conj_invariant_and_flat4 below · depth 18 - A finite-measure neighbourhood where the zeta integrand stays nonzero
AutomorphicForm.exists_nhd_whittakerCoefficient_diagOne_sPartMeasure_lt_top2 below · depth 18 - Two-sided torus decay of a smoothed cuspidal unipotent average
AutomorphicForm.exists_norm_unipotentAverage_rightConv_diagOne_mul_le_min_ideleNorm_pow92 below · depth 18 - Integration by parts bound for a Whittaker coefficient
AutomorphicForm.exists_norm_whittakerCoefficient_le_mul_of_hasDerivAt_unipotentGL2_of_forall_norm_le7 below · depth 18 - Rapid decay of the first Whittaker coefficient of a smoothed cusp form
AutomorphicForm.exists_norm_whittakerCoefficient_rightConv_diagOne_mul_le_ideleNorm_rpow_neg_of_one_le92 below · depth 18 - Torus Whittaker expansion of a smoothed adelic cusp form
AutomorphicForm.hasSum_whittakerCoefficient_one_diagOne_principalIdeles_unipotentAverage103 below · depth 18 - Right convolution by a test function preserves vanishing constant term
AutomorphicForm.isCuspidalFn_rightConv4 below · depth 18 - Square-integrability of φ * f on a centre-cut Siegel window
AutomorphicForm.memLp_two_rightConv_restrict_of_isCuspAutomorphicFnAt_of_coversModCentre_of_pos75 below · depth 18 - Translate package for right convolutions of cusp forms
AutomorphicForm.rightConv_translate_package_of_isCuspAutomorphicFnAt82 below · depth 18 - Unipotent Schwartz averaging multiplies the zeta integrand by int Bψ
AutomorphicForm.zetaIntegrand_whittakerCoefficient_unipotentAverage_eq_mul6 below · depth 18 - Local functional equation at one deeply twisted prime
LanglandsTunnell.CubicInduction.exists_forall_mem_gl3CyclicSubspace_localZeta31_fe_one_of_cubicInductionForm_twist_deepAt593 below · depth 18 - Local constants of twisted cubic induction on the cyclic span
LanglandsTunnell.CubicInduction.exists_forall_mem_gl3CyclicSubspace_localZetaDual31_eq_mul_of_cubicInductionForm_twisted_badPlaces_noFE32_adm598 below · depth 18 - Explicit K₁(p^{3B+Δ})-invariant bump vector for twisted cubic induction
LanglandsTunnell.CubicInduction.exists_mem_gl3CyclicSubspace_twist_whittakerLoc_congruenceK1_invariant_iotaGL_bump_of_conductor_le_ed3111 below · depth 18 - Finiteness of torus coefficients in the twisted local cyclic space
LanglandsTunnell.CubicInduction.forall_mem_gl3CyclicSubspace_torusFinite_of_cubicInductionForm_twisted_noFE32_level19 below · depth 18 - Dual-side family identity in the GL₂timesGL₃ entire-pair assembly
LanglandsTunnell.RankinSelberg.EntirePairAssembly.dual_identity_family24 below · depth 18 - Archimedean holomorphy and non-vanishing from a torus Γ-factor identity
LanglandsTunnell.RankinSelberg.differentiableOn_and_rsArchIntegral_ne_zero_of_torusPair_eq_gammaFactor5 below · depth 18 - Local relations at p for the dual translate of W_f
LanglandsTunnell.RankinSelberg.dualTranslate_finWhittaker_local_relations3 below · depth 18 - Half-plane integrability of archimedean GL₂timesGL₃ Rankin–Selberg integrands
LanglandsTunnell.RankinSelberg.exists_forall_integrable_archWhittaker_torusPair_rpow_det7 below · depth 18 - Finite GL₃-translate family: constant integral and dual root number
LanglandsTunnell.RankinSelberg.exists_gl3Translates_sum_rsFinIntegral_cells_eq_const_and_dual_eq_rootNumberMonomial_of_finWhittaker_one_ne_zero_of_localSpaceAt_of_member_of_fe32_normPin_twisted_offSQ_archPsi_bump_levelShift_global982 below · depth 18 - Minimal-weight Casimir eigenvector for a continuous cuspidal realization over ℚ
LanglandsTunnell.exists_archCasimir_eigenvector_minimalWeight_of_continuous_realization344 below · depth 18 - Isotypic cusp form replaced inside one cuspidal constituent
LanglandsTunnell.exists_isCuspConstituent_mem_isIsotypicCuspFormAt_of_isIsotypicCuspFormAt_of_rightConv_eq340 below · depth 18 - Whittaker non-vanishing on the torus, with J-rigidity transfer
LanglandsTunnell.exists_mem_isCuspConstituent_isIsotypicCuspFormAt_whittakerCoefficient_diagOne_ne_zero_J_rigid_of_hasArchCharacterAt224 below · depth 18 - Whittaker factorization for reflected-lowering eigencombinations at weight one
LanglandsTunnell.exists_whittaker_factorization_add_smul_reflect_lower_of_archCasimir_eigenvector_weightOne_of_ne363 below · depth 18 - Whittaker factorisation of a minimal-weight Casimir eigenvector over ℚ
LanglandsTunnell.exists_whittaker_factorization_eq_or_eq_smul_raise_of_archCasimir_eigenvector_minimalWeight367 below · depth 18 - Schwartz–Bruhat function standard outside S with non-negative Fourier multiplier
NumberField.AdelicFourier.exists_mem_schwartzBruhat_isFactorizableStandardOutside_integral_eq_nonneg52 below · depth 18 - Entirety of a bounded, pinched S-part zeta integral
UnramifiedWhittaker.integrable_and_differentiable_integral_mul_zetaIntegrand_sPartMeasure_of_bounded1 below · depth 18 - Non-vanishing of a weighted S-part zeta integral
UnramifiedWhittaker.integral_mul_zetaIntegrand_sPartMeasure_ne_zero_of_nonneg_of_le_re0 below · depth 18 - Every vector of a cuspidal constituent lies in an archimedean cut
AutomorphicForm.CuspidalConstituent.exists_archTypeFamily_mem_archCutSubmodule_of_mem_isCuspConstituent0 below · depth 19 - Vectors of level-and-type cuts are right convolutions
AutomorphicForm.CuspidalConstituent.exists_eq_rightConv_of_mem_cut162 below · depth 19 - Archimedean type cuts inside a cuspidal subrepresentation refine to irreducibles
AutomorphicForm.CuspidalConstituent.exists_inf_archCutSubmodule_le_iSup_isIrreducible_of_isCuspSubrep5 below · depth 19 - Factorizable test function reproducing a cuspidal vector
AutomorphicForm.CuspidalConstituent.exists_isFactorizableTestFn_rightConv_eq_self_of_mem_inf_levelInvariantSubmodule_inf_archCutSubmodule165 below · depth 19 - Some level-spherical smoothing is injective on a finite-dimensional space
AutomorphicForm.CuspidalConstituent.exists_rightConv_injOn_of_finiteDimensional_of_le21 below · depth 19 - Smoothing preserves the isotypic cuspidal archimedean cut
AutomorphicForm.CuspidalConstituent.rightConv_mem_isotypicCuspSubmodule_inf_archCutSubmodule83 below · depth 19 - Finite-adelic translates preserve a cuspidal constituent and its archimedean data
AutomorphicForm.CuspidalConstituent.sum_mul_apply_mul_mem_and_arch_transfer_of_mem_isCuspConstituent_of_mem_finiteAdelicGL2Subgroup0 below · depth 19 - From Siegel-window cusp forms to slab fundamental domain members
AutomorphicForm.CuspidalSpectrum.cuspKFiniteSubmodule_le_cuspMemberSubmodule12 below · depth 19 - Continuous members inject into the weighted L² carrier
AutomorphicForm.CuspidalSpectrum.eq_zero_of_toCarrier_eq_zero3 below · depth 19 - Cuspidal constituents force a modulus on ξ
AutomorphicForm.CuspidalSpectrum.exists_hasModulus_of_isCuspConstituent7 below · depth 19 - Compact symmetric smoothing operator on the cuspidal spectrum
AutomorphicForm.CuspidalSpectrum.exists_isCompactOperator_isSymmetric_lift_rightConv98 below · depth 19 - Existence of slab fundamental domains for GL₂
AutomorphicForm.CuspidalSpectrum.exists_isSlabFundamentalDomain8 below · depth 19 - Eigenspace decomposition of right convolution on a finite-dimensional cut
AutomorphicForm.CuspidalSpectrum.exists_le_iSup_rightConv_eq_smul_of_finiteDimensional101 below · depth 19 - Non-zero convolution eigenvectors come from continuous cusp forms
AutomorphicForm.CuspidalSpectrum.exists_mem_cuspMemberSubmodule_toCuspSubcarrier_eq_rightConv_eq_smul89 below · depth 19 - Approximate identities for cuspidal vectors in the slab carrier
AutomorphicForm.CuspidalSpectrum.exists_norm_toCarrier_sub_lt41 below · depth 19 - Flat-symmetric smoothing non-zero on a cuspidal type cut
AutomorphicForm.CuspidalSpectrum.exists_rightConv_ne_zero_of_ne_bot24 below · depth 19 - Spectral μ-components of isotypic cusp forms are eigenfunction classes
AutomorphicForm.CuspidalSpectrum.exists_slice_sub_mem_eigenspace_orthogonal120 below · depth 19 - Right convolution preserves cuspidal continuous members
AutomorphicForm.CuspidalSpectrum.rightConv_mem_cuspMemberSubmodule22 below · depth 19 - Right translation preserves the cuspidal member submodule
AutomorphicForm.CuspidalSpectrum.rightTranslate_mem_cuspMemberSubmodule15 below · depth 19 - 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 - Admissible unitary untwist of a cuspidal central character
AutomorphicForm.SmoothCuspRealizationAt.exists_isAdmissibleTwist_eq_centralChar_mul_ideleNorm_inv11 below · depth 19 - Archimedean smoothing of a cuspidal realisation at a real place
AutomorphicForm.SmoothCuspRealizationAt.exists_rightConv_ne_zero_mem_isotypicCuspSubmodule_mem_archCutSubmodule_hasArchCharacterAt_of_isReal77 below · depth 19 - Local Whittaker vectors at p inherit the central character
AutomorphicForm.WhittakerModel.forall_mem_localSpaceAt_scalar_mul_eq_localChar_mul0 below · depth 19 - Casimir eigenvalue persists under right convolution by a test function
AutomorphicForm.archCasimirAt_rightConv_eq_smul_of_archCasimirAt_eq_smul_of_isArchSmoothAt_of_isFactorizableTestFn8 below · depth 19 - Infinitesimal weight in along the rotation direction E-F
AutomorphicForm.archDerivAt_E_sub_archDerivAt_Fm_eq_smul_of_hasArchCharacterAt0 below · depth 19 - Smoothing and integration by parts for right convolution
AutomorphicForm.archDerivAt_rightConv_eq_rightConv_deriv_of_isFactorizableTestFn3 below · depth 19 - Simultaneous splitting of the finite Whittaker factor over T
AutomorphicForm.exists_finWhittaker_eq_sum_prod_mul_of_isIsotypicCuspFormAt_placeEmbed_invariant_of_localSpaceAt14 below · depth 19 - Uniform decay of the first Whittaker coefficient along the torus
AutomorphicForm.exists_forall_prod_norm_pow_mul_norm_whittakerCoefficient_one_diagOne_unipotentAverage_le89 below · depth 19 - Adelic GL₂ Haar measure against a compact open level
AutomorphicForm.exists_integral_archEntries_mul_indicator_eq_mul_integral_of_isCompact_of_isOpen0 below · depth 19 - Bi-finitisation of the archimedean factor of a test function
AutomorphicForm.exists_isArchFactorBiFinite_rightConv_ne_zero_and_norm_sub_le_of_isCompact1 below · depth 19 - Decay of a convolved cusp form along diag(a,1)
AutomorphicForm.exists_norm_rightConv_diagOne_mul_mul_unipotentGL2_le_of_le_ideleNorm89 below · depth 19 - Reproduction and Whittaker properties of isotypic cusp forms over ℚ
AutomorphicForm.exists_rightConv_eq_self_and_isIsotypicCuspFormAt_add_smul_archDerivAt_and_whittakerCoefficient_bounds_of_mem_archCutSubmodule351 below · depth 19 - Finite-dimensionality of convolution-fixed adelic cusp forms
AutomorphicForm.finiteDimensional_of_forall_mem_rightConv_eq_self75 below · depth 19 - Differentiating right convolution along archimedean unipotent directions
AutomorphicForm.hasDerivAt_rightConv_mul_unipotentGL2_and_isFactorizableTestFn_leftDeriv_and_linear2 below · depth 19 - Two-sided χ-averaging of an archimedean test factor
AutomorphicForm.isArchTestFactor_and_isArchFactorBiFinite_ofChar_integral_of_isArchTestFactor0 below · depth 19 - Fibre integrals along multiplication give archimedean test factors
AutomorphicForm.isArchTestFactor_of_forall_eq_integral_snoc0 below · depth 19 - Factorizable test functions are stable under twisting by η∘det
AutomorphicForm.isFactorizableTestFn_chiDet_mul_of_continuous_of_isOfFinOrder0 below · depth 19 - Right convolution preserves the isotypic cusp space
AutomorphicForm.isIsotypicCuspFormAt_rightConv_of_isFactorizableTestFn_of_support_subset_of_coversModCentre79 below · depth 19 - Right convolution by a factorizable test function is K_f-smooth
AutomorphicForm.isKfSmooth_rightConv1 below · depth 19 - Maass raising and lowering operators at a real place
AutomorphicForm.iterate_raise_iterate_lower_eq_smul_of_archCasimirAt_eq_smul0 below · depth 19 - Archimedean Whittaker coefficient: covariance, ODE, growth, separation
AutomorphicForm.whittakerCoefficient_torus_peel_ode_growth_and_separation_of_isIsotypicCuspFormAt_of_archCasimirAt_eq_smul10 below · depth 19 - Archimedean root sizes of a GL₂ block image and its dual
LanglandsTunnell.CubicInduction.archRoot_iota_archRealGLAt_and_dual0 below · depth 19 - Local GL₃timesGL₁ constants of a cubic induction at one bad place
LanglandsTunnell.CubicInduction.exists_forall_mem_gl3CyclicSubspace_localZetaDual31_eq_mul_of_isCubicInductionDataOn_deepAt539 below · depth 19 - Span-wide local constants for deep cubic induction data
LanglandsTunnell.CubicInduction.exists_forall_mem_gl3CyclicSubspace_localZetaDual31_eq_mul_of_isCubicInductionDataOn_deep_badPlaces550 below · depth 19 - Half-plane integrability of pure-tensor Rankin–Selberg cell integrands
LanglandsTunnell.RankinSelberg.exists_forall_integrable_rsFinCellIntegrand_pureTensorTerm_dual_and_hybrid_of_depth_twisted_torusFinite_central_growth_of_principalLevel_of_gammaHyp136 below · depth 19 - Integrability of the twisted Rankin–Selberg finite-cell integrands
LanglandsTunnell.RankinSelberg.exists_forall_integrable_rsFinCellIntegrand_translate_and_dual_twisted116 below · depth 19 - Half-plane integrability of an archimedean torus profile
LanglandsTunnell.RankinSelberg.exists_forall_lintegral_norm_torusProfile_mul_rpow_lt_top0 below · depth 19 - Rational local γ at a level prime, archimedean nonvanishing edition
LanglandsTunnell.RankinSelberg.exists_rational_gamma_rsLocalIntegral_member_twisted_of_finiteFamily_arch_deep_archPsi489 below · depth 19 - Modulus of a real Whittaker function on torus times O(2)
LanglandsTunnell.RankinSelberg.norm_archWhittaker_upperUnit_mul_rowIsometry0 below · depth 19 - Weight, lowering and raising relations in torus coordinates
LanglandsTunnell.archDerivAt_E_sub_Fm_eq_and_splitTorus_lowering_raising_relations_of_hasArchCharacterAt0 below · depth 19 - General-pins Whittaker link from a Casimir-eigen minimal-weight datum
LanglandsTunnell.exists_agreesAwayFromFinite_isArithGenuineCuspRealizable_twist_whittaker_link_localSpaceAt_of_whittakerCoefficient_fibre_eq_archW_of_isCasimirEigen550 below · depth 19 - Pinned niceness of twisted base-change L-data over cubic fields
LanglandsTunnell.exists_isNicePinned_twistedDatum_formalBaseChange_archOfParam_superset_generic_of_whittaker_factorization_of_norm_eq_one_of_summable_of_localSpaceAt2,507 below · depth 19 - Bi-finite isotypic smoothing of a continuous cuspidal realization
LanglandsTunnell.exists_rightConv_ne_zero_mem_isotypicCuspSubmodule_mem_archCutSubmodule80 below · depth 19 - Nonvanishing first Whittaker coefficient at a real torus point
LanglandsTunnell.exists_whittakerCoefficient_diagOne_archUnitHom_mul_ne_zero_of_isIsotypicCuspFormAt24 below · depth 19 - Whittaker factorisation for a weight-zero cusp form and its raising
LanglandsTunnell.exists_whittaker_factorization_self_and_smul_raise_of_archCasimir_eigenvector_weightZero364 below · depth 19 - Raising operator: isotypy, weight k+2, Whittaker coefficients
LanglandsTunnell.isIsotypicCuspFormAt_smul_archRaise_and_whittakerCoefficient_archRaise_archLower340 below · depth 19 - Lowering operator forces Whittaker vanishing on the negative torus
LanglandsTunnell.whittakerCoefficient_diagOne_neg_eq_zero_of_isIsotypicCuspFormAt_of_lowering_eq_zero102 below · depth 19 - Torus structure of the first Whittaker coefficient over ℚ
LanglandsTunnell.whittakerCoefficient_splitTorus_structure_of_isIsotypicCuspFormAt_of_archCasimirAt_eq102 below · depth 19 - Uniform polynomial height moments of Schwartz–Bruhat functions
NumberField.AdelicFourier.exists_forall_integral_norm_mul_inv_adelicHeight_mul_unipotentGL2_pow_le_of_mem_schwartzBruhat3 below · depth 19 - Finitely many irreducible archimedean types for simple constituents
AutomorphicForm.CuspidalConstituent.exists_forall_le_archTypeSubmoduleAt_of_isSimple_of_le_iSup0 below · depth 20 - Minimality dichotomy for the level-and-type cut of a cuspidal constituent
AutomorphicForm.CuspidalConstituent.inf_eq_bot_or_le_of_isCuspConstituent34 below · depth 20 - Archimedean type splitting for stable spaces of continuous functions
AutomorphicForm.CuspidalConstituent.inf_iSup_archTypeSubmoduleAt_le_iSup_inf_of_continuous3 below · depth 20 - Smoothing by a test function supported in the level group
AutomorphicForm.CuspidalConstituent.rightConv_mem_levelInvariantSubmodule_inf_archCutSubmodule_of_isArchBiFinite3 below · depth 20 - Lifted right convolution preserves the cuspidal subcarrier
AutomorphicForm.CuspidalSpectrum.apply_mem_cuspSubcarrier_of_isLift_rightConv7 below · depth 20 - Hecke coset sums lift to operators commuting with smoothing
AutomorphicForm.CuspidalSpectrum.exists_commute_lift_heckeCosetSum_of_isLevelSphericalOfType37 below · depth 20 - Right convolution lifts to an adjoint pair of operators
AutomorphicForm.CuspidalSpectrum.exists_isLift_rightConv15 below · depth 20 - Right translation lifts to bounded operators on the weighted L² carrier
AutomorphicForm.CuspidalSpectrum.exists_isLift_rightTranslate10 below · depth 20 - Strong continuity of right translation on the weighted L² carrier
AutomorphicForm.CuspidalSpectrum.exists_nhds_forall_norm_toCarrier_rightTranslate_sub_lt14 below · depth 20 - Closure of a cuspidal subrepresentation's class image is closed subrepresentation
AutomorphicForm.CuspidalSpectrum.isClosedCuspSubrep_topologicalClosure_map_toCuspSubcarrier_of_isCuspSubrep0 below · depth 20 - Compactness of right convolution on the cuspidal subspace
AutomorphicForm.CuspidalSpectrum.isCompactOperator_lift_rightConv_comp_cuspSubcarrier86 below · depth 20 - Factorisable test functions are smooth and differentiable at a real place
AutomorphicForm.IsFactorizableTestFn.isArchSmoothAt_and_archDerivAt_eq_tensor0 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 - Non-vanishing first Whittaker coefficient at a torus point trivial outside S
AutomorphicForm.SmoothCuspRealizationAt.exists_mem_maximalCompactAt_whittakerCoefficient_rightConv_diagOne_mul_ne_zero43 below · depth 20 - Unramified package at a good place for smoothed translate sums
AutomorphicForm.SmoothCuspRealizationAt.unramified_package_rightConv_sum_translate12 below · depth 20 - Continuous central idempotent reproducing a finite-dimensional archimedean type space
AutomorphicForm.exists_continuous_conj_invariant_integral_mul_apply_mul_eq_of_finiteDimensional_of_le_archCutSubmodule1 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 - One bi-finite test function reproduces a finite-dimensional cut
AutomorphicForm.exists_isFactorizableTestFn_isArchBiFinite_forall_rightConv_eq_self_of_finiteDimensional_of_isCompact22 below · depth 20 - Flat level-spherical approximate identity for a finite-dimensional space
AutomorphicForm.exists_isLevelSphericalOfType_flat_tendsto_rightConv_of_finiteDimensional19 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 - Rapid decay of φ * f in the adelic height on a determinant slab
AutomorphicForm.exists_norm_rightConv_le_mul_inv_adelicHeight_pow_of_ideleNorm_det_mem_Icc78 below · depth 20 - Coordinatewise rapid decay of smoothed cuspidal Whittaker coefficients
AutomorphicForm.exists_norm_whittakerCoefficient_rightConv_diagOne_mul_le_ideleNorm_rpow_mul_norm_infinitePlace_rpow_neg92 below · depth 20 - Sandwiched smoothing on reproduced vectors is archimedean smoothing
AutomorphicForm.exists_pos_forall_rightConv_integral_prod_mul_indicator_eq_mul_integral_of_forall_integral_mul_apply_mul_eq4 below · depth 20 - Finite-dimensional stable span of archimedean translates
AutomorphicForm.finiteDimensional_span_translates_of_mem_archCutSubmodule1 below · depth 20 - Integrability of ‖φ*f‖² against height powers on Siegel pieces
AutomorphicForm.integrableOn_norm_rightConv_sq_mul_archHeight_pow_mul_ideleNorm_rpow_inter_centreCutSiegelSet88 below · depth 20 - Two-sided average of a conjugation-invariant flat function
AutomorphicForm.integral_prod_conj_eq_and_eq_conj_mul_of_conj_invariant_of_flat0 below · depth 20 - Two-sided K-averages of archimedean test factors
AutomorphicForm.isArchTestFactor_and_isArchFactorBiFinite_integral_prod_of_continuous_of_mem_iSup_typeSubmodule1 below · depth 20 - Right convolution preserves smooth compactly supported archimedean factors
AutomorphicForm.isArchTestFactor_integral_mul_of_isArchTestFactor_of_hasCompactSupport0 below · depth 20 - Boundedness of smoothed cusp forms on Siegel windows
AutomorphicForm.isBoundedOnSiegelWindows_rightConv_of_isCuspAutomorphicFnAt_of_isFundamentalDomain73 below · depth 20
… and 285 more statements (search for the module name to find them).