Definitions/Def_AutomorphicForm_WhittakerCoefficient.lean
Whittaker coefficients and global additive characters of the adeles
Throughout, F is a number field with adele ring \mathbb{A}_F = AdeleRing (𝓞 F) F, and additive characters are Mathlib's AddChar (AdeleRing (𝓞 F) F) ℂ, i.e. multiplicative-valued maps into \mathbb{C} (not a priori unitary). A character \psi is principal-invariant, IsPrincipalInvariantAddChar F ψ, when \psi(\iota(\alpha)) = 1 for every \alpha \in F, \iota being the structure map F \to \mathbb{A}_F; equivalently \psi factors through \mathbb{A}_F/F. The structure IsGlobalAddChar F ψ is a Prop-valued bundle of exactly three conditions, carried as fields: principal invariance, continuity of \psi, and \psi \neq 1. Two immediate facts are recorded: the trivial character is principal-invariant, and it is not a global additive character (it fails the nontriviality field).
Given a bundle pins : CarrierPins F — which supplies, among other data, a measurable-space structure pins.nS on \mathbb{A}_F and a measure pins.ν on it — a character \psi, a function \varphi : \mathrm{GL}_2(\mathbb{A}_F) \to \mathbb{C}, an \alpha \in F and a g \in \mathrm{GL}_2(\mathbb{A}_F), the \alpha-th Whittaker coefficient is defined as the Bochner integral
\mathrm{whittakerCoefficient}\ F\ \mathrm{pins}\ \psi\ \varphi\ \alpha\ g = \int_{\mathbb{A}_F} \varphi\!\left(\begin{pmatrix}1 & x\\ 0 & 1\end{pmatrix} g\right)\psi\bigl(-\iota(\alpha)x\bigr)\, d\nu(x),
where the unipotent matrix is unipotentGL2 x. The companion predicate WhittakerCoefficientIntegrable F pins ψ φ α g asserts exactly that this integrand is Integrable with respect to pins.ν; since the Bochner integral of a non-integrable function is 0, this side condition is what licenses reading the value as a genuine integral. Two computations round off the module: the coefficient of the zero function vanishes, and at \alpha = 0 the character factor is identically 1, so the coefficient coincides with the constant term \int_{\mathbb{A}_F} \varphi(\mathrm{unipotentGL2}\ x \cdot g)\,d\nu(x), i.e. with constantTerm taken with respect to pins.ν and the unipotent embedding.
Relation to Mathlib
AddChar and Integrable are Mathlib's; Mathlib has no notion of adelic Whittaker or Fourier coefficient for \mathrm{GL}_2, nor of a global additive character of \mathbb{A}_F/F, and both are introduced here.
Where it is used
These definitions set up the Fourier–Whittaker expansion along the unipotent radical of the standard Borel of \mathrm{GL}_2(\mathbb{A}_F), which is the adelic counterpart of the q-expansion of a modular form. The \alpha = 0 coefficient is the constant term, so cuspidality concentrates the content of the expansion at \alpha \in F^{\times}, and the remaining coefficients are what carry Hecke eigenvalues on the automorphic side of the modularity argument.
References
- H. Darmon, F. Diamond and R. Taylor, Fermat's Last Theorem, in: Current Developments in Mathematics 1995, International Press, 1995, 1–154
- H. Jacquet and R. P. Langlands, Automorphic Forms on GL(2), Lecture Notes in Mathematics 114, Springer, 1970
- 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.
- 62 lines
- 11 declarations
- used in the statements of 310 theorems and imported by 337 proofs
- imports 2 definition modules
Source file: Definitions/Def_AutomorphicForm_WhittakerCoefficient.lean
Declarations
- def
AutomorphicForm.IsPrincipalInvariantAddChar - structure
AutomorphicForm.IsGlobalAddChar - field
AutomorphicForm.IsGlobalAddChar.principalInvariant - field
AutomorphicForm.IsGlobalAddChar.continuous - field
AutomorphicForm.IsGlobalAddChar.nontrivial - theorem
AutomorphicForm.isPrincipalInvariantAddChar_one - theorem
AutomorphicForm.not_isGlobalAddChar_one - def
AutomorphicForm.whittakerCoefficient - def
AutomorphicForm.WhittakerCoefficientIntegrable - theorem
AutomorphicForm.whittakerCoefficient_zero - theorem
AutomorphicForm.whittakerCoefficient_zero_eq_constantTerm
Source
import Definitions.Def_AutomorphicForm_CarrierPins import Definitions.Def_AutomorphicForm_ConstantTerm set_option autoImplicit false open IsDedekindDomain NumberField MeasureTheory open AutomorphicForm noncomputable section namespace AutomorphicForm variable (F : Type) [Field F] [NumberField F] def IsPrincipalInvariantAddChar (ψ : AddChar (AdeleRing (𝓞 F) F) ℂ) : Prop := ∀ α : F, ψ (algebraMap F (AdeleRing (𝓞 F) F) α) = 1 structure IsGlobalAddChar (ψ : AddChar (AdeleRing (𝓞 F) F) ℂ) : Prop where principalInvariant : IsPrincipalInvariantAddChar F ψ continuous : Continuous ψ nontrivial : ψ ≠ 1 theorem isPrincipalInvariantAddChar_one : IsPrincipalInvariantAddChar F (1 : AddChar (AdeleRing (𝓞 F) F) ℂ) := fun _ => rfl theorem not_isGlobalAddChar_one : ¬ IsGlobalAddChar F (1 : AddChar (AdeleRing (𝓞 F) F) ℂ) := fun h => h.nontrivial rfl def whittakerCoefficient (pins : CarrierPins F) (ψ : AddChar (AdeleRing (𝓞 F) F) ℂ) (φ : AdelicGL2 (𝓞 F) F → ℂ) (α : F) (g : AdelicGL2 (𝓞 F) F) : ℂ := letI := pins.nS ∫ x, φ (unipotentGL2 x * g) * ψ (-(algebraMap F (AdeleRing (𝓞 F) F) α * x)) ∂pins.ν def WhittakerCoefficientIntegrable (pins : CarrierPins F) (ψ : AddChar (AdeleRing (𝓞 F) F) ℂ) (φ : AdelicGL2 (𝓞 F) F → ℂ) (α : F) (g : AdelicGL2 (𝓞 F) F) : Prop := letI := pins.nS Integrable (fun x => φ (unipotentGL2 x * g) * ψ (-(algebraMap F (AdeleRing (𝓞 F) F) α * x))) pins.ν @[simp] theorem whittakerCoefficient_zero (pins : CarrierPins F) (ψ : AddChar (AdeleRing (𝓞 F) F) ℂ) (α : F) (g : AdelicGL2 (𝓞 F) F) : whittakerCoefficient F pins ψ (fun _ => (0 : ℂ)) α g = 0 := by letI := pins.nS simp only [whittakerCoefficient, zero_mul, integral_zero] theorem whittakerCoefficient_zero_eq_constantTerm (pins : CarrierPins F) (ψ : AddChar (AdeleRing (𝓞 F) F) ℂ) (φ : AdelicGL2 (𝓞 F) F → ℂ) (g : AdelicGL2 (𝓞 F) F) : whittakerCoefficient F pins ψ φ 0 g = @constantTerm _ pins.nS _ _ pins.ν unipotentGL2 φ g := by letI := pins.nS simp only [whittakerCoefficient, map_zero, zero_mul, neg_zero, AddChar.map_zero_eq_one, mul_one] rfl end AutomorphicForm end
Statements phrased using this module (310)
- Integrability and summability of adelic GL₂ Whittaker coefficients
AutomorphicForm.whittakerCoefficientIntegrable_and_summable_of_isKfSmooth_of_contDiff_mixedSpace12 below · depth 14 - Global additive characters of A_F are unitary
NumberField.AdelicFourier.norm_apply_eq_one_of_isGlobalAddChar0 below · depth 15 - Whittaker–Fourier expansion of a continuous unipotent slice
AutomorphicForm.hasSum_whittakerCoefficient5 below · depth 16 - Whittaker coefficients: W_α(g)=W₁(diag(α,1)g)
AutomorphicForm.whittakerCoefficient_eq_whittakerCoefficient_one_globalPoints_diagOne_mul3 below · depth 16 - Unipotent covariance of adelic Whittaker coefficients on GL₂
AutomorphicForm.whittakerCoefficient_unipotentGL2_mul0 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 - Archimedean part of a global additive character is standard after twisting
NumberField.AdelicFourier.exists_ne_zero_apply_eq_fourierChar_trace_of_isGlobalAddChar6 below · depth 16 - A bad set for a smoothed cusp realisation, with coset data
AutomorphicForm.SmoothCuspRealizationAt.exists_finset_badSet_rightConv_section31 below · depth 17 - Central eigenvalue bᵥ shifts the Whittaker coefficients
AutomorphicForm.SmoothCuspRealizationAt.whittakerCoefficient_mul_placeEmbed_scalarPi_eq_b_mul_whittakerCoefficient0 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 - Local components of a global additive character of A_F
AutomorphicForm.exists_localComponents_of_isGlobalAddChar21 below · depth 17 - Nonvanishing of the first Whittaker coefficient
AutomorphicForm.exists_whittakerCoefficient_one_ne_zero9 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 - Annihilator of the integral finite adeles is d⁻¹+widehat𝒪
NumberField.AdelicFourier.forall_addChar_finitePart_mul_eq_one_iff_exists_mem_traceDual4 below · depth 17 - Adelic Fourier inversion with an unnormalised Haar measure
NumberField.AdelicFourier.fourierIntegral_fourierIntegral_eq33 below · depth 17 - Fourier transform preserves the adelic Schwartz–Bruhat space
NumberField.AdelicFourier.fourierIntegral_mem_schwartzBruhat19 below · depth 17 - Product formula for the adelic Fourier transform of a pure tensor
NumberField.AdelicFourier.fourierIntegral_pureTensor_eq0 below · depth 17 - Self-annihilation of F in A_F under a global character
NumberField.AdelicFourier.mem_range_algebraMap_of_forall_apply_mul_eq_one1 below · depth 17 - Adelic Poisson summation with the zero frequency split off
NumberField.AdelicFourier.tsum_sub_inv_measure_mul_integral_eq_inv_measure_mul_tsum_fourierIntegral_ne_zero37 below · depth 17 - Cut vectors of a cuspidal constituent are bounded by ‖det‖^{w₀/2}
AutomorphicForm.CuspidalConstituent.exists_norm_le_mul_ideleNorm_det_rpow_of_isCuspConstituent173 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 - Non-vanishing Whittaker coefficient forces ψ unramified outside S
AutomorphicForm.addChar_eq_one_on_integers_off_of_whittakerCoefficient_ne_zero1 below · depth 18 - Continuity of the adelic Whittaker coefficient in g
AutomorphicForm.continuous_whittakerCoefficient0 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 - 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 - Bessel's inequality for Whittaker coefficients on the adelic box
AutomorphicForm.sum_norm_whittakerCoefficient_sq_le_integral_norm_sq1 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 - Rankin–Selberg integral as archimedean times finite integral times partial L-function
LanglandsTunnell.RankinSelberg.exists_forall_rsGlobalIntegral_eq_mul_rsArchIntegral_mul_rsFinIntegral_mul_lFun24 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 - Two-sided unfolding of the GL₂timesGL₃ Rankin–Selberg integral
LanglandsTunnell.RankinSelberg.exists_ne_zero_forall_rsGlobalIntegral_eq_mul_integral_unipotentQuotient_whittakerCoefficient_mul_of_hasSum_mirabolicTranslate_and_dual13 below · depth 18 - Integrability of the unfolded GL₂timesGL₃ Rankin–Selberg integrand
LanglandsTunnell.RankinSelberg.integrable_unipotentQuotient_whittakerCoefficient_mul_of_hasSum_mirabolicTranslate_and_dual13 below · depth 18 - Casimir eigenvalue from a Whittaker factorisation on one finite fibre
LanglandsTunnell.exists_archOccursInClassOf_archCasimirAt_laplaceEigenvalue_of_whittakerCoefficient_fibre_eq359 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 - Pure-tensor factorisation of a Whittaker function over ℚ
LanglandsTunnell.exists_whittakerCoefficient_eq_archWhittaker_mul_finWhittaker_of_isIsotypicCuspFormAt3 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 - Local Whittaker relations at a good place over ℚ
LanglandsTunnell.finWhittaker_unipotent_levelOne_hecke_centre_of_isIsotypicCuspFormAt1 below · depth 18 - Pure tensors are stable under dilation by nonzero elements of F
NumberField.AdelicFourier.comp_mul_algebraMap_mem_pureTensorSet0 below · depth 18 - Annihilator of the integral finite adeles is the inverse different
NumberField.AdelicFourier.forall_addChar_finitePart_mul_eq_one_iff_mem_traceDual3 below · depth 18 - Adelic Fourier inversion for pure tensors
NumberField.AdelicFourier.fourierIntegral_fourierIntegral_eq_of_mem_pureTensorSet28 below · depth 18 - Adelic Fourier transform preserves the Schwartz–Bruhat space
NumberField.AdelicFourier.fourierIntegral_mem_schwartzBruhat_of_apply_eq_fourierChar_trace13 below · depth 18 - Adelic Poisson summation on the Schwartz–Bruhat space
NumberField.AdelicFourier.tsum_eq_inv_measure_mul_tsum_fourierIntegral36 below · depth 18 - Entire continuation and functional equation of Tate's zeta integral
NumberField.TateGlobal.zetaIntegral_entire_continuation_fe_norm_le_of_re_mem_Icc_of_exists_mem_normOneIdeles_ne_one45 below · depth 18 - Entire continuation and functional equation of Tate's zeta integral
NumberField.TateGlobal.zetaIntegral_entire_continuation_fe_of_exists_mem_normOneIdeles_ne_one45 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 - Factorizable test function reproducing a cuspidal vector
AutomorphicForm.CuspidalConstituent.exists_isFactorizableTestFn_rightConv_eq_self_of_mem_inf_levelInvariantSubmodule_inf_archCutSubmodule165 below · depth 19 - Whittaker decay at the torus origin, finite translate
AutomorphicForm.CuspidalConstituent.exists_norm_whittakerCoefficient_diagOne_mul_le_ideleNorm_rpow_mul_prod_min_of_isCuspConstituent_mul_of_glArch_eq_one290 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 - Admissible unitary untwist of a cuspidal central character
AutomorphicForm.SmoothCuspRealizationAt.exists_isAdmissibleTwist_eq_centralChar_mul_ideleNorm_inv11 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 - C² regularity along the unipotent archimedean direction over ℚ
AutomorphicForm.contDiff_apply_unipotentGL2_mixedSpace_mul_of_isArchSmoothAt_rat0 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 - Non-vanishing Whittaker coefficient at a principal idele
AutomorphicForm.exists_mem_principalIdeles_whittakerCoefficient_one_diagOne_mul_ne_zero24 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 - 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 - Nonvanishing Whittaker coefficient at a diagonal point over ℚ
AutomorphicForm.exists_whittakerCoefficient_one_diagOne_ne_zero_of_glFin_eq_one_rat2 below · depth 19 - Archimedean derivatives and Casimir pass through Whittaker coefficients
AutomorphicForm.hasDerivAt_whittakerCoefficient_archFlow_of_continuous_archDerivAt0 below · depth 19 - Rankin–Selberg unfolding on a determinant slab for GL₂
AutomorphicForm.peterssonIntegral_mul_bruhatEisenstein_eq_integral_whittakerCoefficient_mul_conj_rationalCentreUnipotentQuotient38 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 - Linearity of the adelic-box Whittaker coefficient in φ
AutomorphicForm.whittakerCoefficient_sum_smul_of_continuous0 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 - Whittaker coefficients of a unipotent average at diag(a,1)
AutomorphicForm.whittakerCoefficient_unipotentAverage_diagOne5 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 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 - 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 - Archimedean derivatives and Casimir commute with Whittaker integration
LanglandsTunnell.isArchSmoothAt_whittakerCoefficient_and_archDerivAt_comm0 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 - Finite part of a trace-normalised global additive character at principal points
NumberField.AdelicFourier.addChar_zero_finitePart_algebraMap_eq_fourierChar_neg_trace1 below · depth 19 - Adelic Fourier inversion for pure tensors
NumberField.AdelicFourier.fourierIntegral_fourierIntegral_eq_of_mem_pureTensorSet_of_apply_eq_fourierChar_trace19 below · depth 19 - Finite-adelic Fourier transform preserves Schwartz–Bruhat functions
NumberField.AdelicFourier.isLocallyConstant_and_hasCompactSupport_fourierIntegral_finiteAdeleRing7 below · depth 19 - Adelic Poisson summation with translation
NumberField.AdelicFourier.tsum_translate_eq_inv_measure_mul_tsum_fourierIntegral35 below · depth 19 - Uniform bound for archimedean translates of Whittaker coefficients
AutomorphicForm.CuspidalConstituent.exists_forall_whittakerCoefficient_mul_eq_sum_mul_whittakerCoefficient_mul_diagOne_of_isCuspConstituent5 below · depth 20 - Whittaker decay on the torus for totally real fields
AutomorphicForm.CuspidalConstituent.exists_norm_whittakerCoefficient_diagOne_mul_le_ideleNorm_rpow_mul_prod_min_of_isCuspConstituent_mul_of_glArch_eq_one_of_forall_isReal229 below · depth 20 - Whittaker torus decay for cuspidal constituents: complex place
AutomorphicForm.CuspidalConstituent.exists_norm_whittakerCoefficient_diagOne_mul_le_ideleNorm_rpow_mul_prod_min_of_isCuspConstituent_mul_of_glArch_eq_one_of_isComplex287 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 - Non-vanishing first Whittaker coefficient over ℚ
AutomorphicForm.SmoothCuspRealizationAt.exists_whittakerCoefficient_one_ne_zero_of_continuous_foldr_archDerivAt_rat23 below · depth 20 - Unramified package at a good place for smoothed translate sums
AutomorphicForm.SmoothCuspRealizationAt.unramified_package_rightConv_sum_translate12 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 - Global additive character with e^{2π i t} at a real place is standard
AutomorphicForm.eq_stdAddChar_of_isGlobalAddChar_of_apply_infinitePlace_eq_exp12 below · depth 20 - Eisenstein unfolding to a rational Borel fundamental domain
AutomorphicForm.exists_isFundamentalDomain_borel_setIntegral_eq_peterssonIntegral_mul_bruhatEisenstein13 below · depth 20 - Weight-n projection of an isotypic cusp form at a real place
AutomorphicForm.exists_isIsotypicCuspFormAt_hasArchCharacterAt_whittakerCoefficient_eq_of_whittakerCoefficient_mul_archIncl_eq3 below · depth 20 - Iwasawa normalisation of a non-vanishing Whittaker value
AutomorphicForm.exists_mem_maximalCompactAt_apply_diagOne_mul_ne_zero_of_apply_ne_zero2 below · depth 20 - Archimedean derivative of a unipotent average's first Whittaker coefficient
AutomorphicForm.exists_mem_schwartzBruhat_whittakerCoefficient_unipotentAverage_diagOne_eq_trace_mul8 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 - Unipotent surgery cutting Whittaker support to the units
AutomorphicForm.exists_unipotent_surgery_whittakerCoefficient_diagOne_mul_eq_sum_mul9 below · depth 20 - Unipotent surgery cutting a Whittaker function to a valuation shell
AutomorphicForm.exists_unipotent_surgery_whittakerCoefficient_diagOne_mul_eq_sum_mul_shell9 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 - Parseval identity for Whittaker coefficients on the adelic box
AutomorphicForm.integral_mul_conj_eq_tsum_whittakerCoefficient_mul_conj6 below · depth 20 - Parseval step of Rankin–Selberg unfolding over the rational torus
AutomorphicForm.integral_mul_conj_unipotent_eq_tsum_units_whittakerCoefficient_one_diagOne_and_tsum_norm_le12 below · depth 20 - Absolute summability of Whittaker coefficients on GL₂
AutomorphicForm.summable_norm_whittakerCoefficient_of_isKfSmooth_of_contDiff_mixedSpace12 below · depth 20 - Whittaker transformation laws and torus ODE over ℚ
AutomorphicForm.whittakerCoefficient_archRealLiftAt_mul_laws_and_torus_ode_of_archCasimirAt_eq_smul_rat10 below · depth 20 - Vanishing of the torus Whittaker function on the wrong sheet
AutomorphicForm.whittakerCoefficient_detOneTorus_eq_zero_of_iterate_lower_eq_zero6 below · depth 20 - Conductor bound for the local central character at unramified v
LanglandsTunnell.CubicInduction.exists_hasConductorExponentAt_localChar_centralChar_le_inducedLevelAt_of_isCubicInductionDataOn278 below · depth 20 - A twist-independent constant in the deep-place GL₃× GL₁ functional equation
LanglandsTunnell.CubicInduction.exists_ne_zero_forall_eval_mul_eq_mul_rootNumber_mul_eval_of_forall_localZeta31_fe_twist_of_isCubicInductionDataOn_of_deep_of_archPackage_of_inv_eq_psiQ_of_whittakerLoc_one502 below · depth 20 - Product formula (prodᵥλᵥ²) λ_∞²=1 for a cubic induction
LanglandsTunnell.CubicInduction.finprod_sq_mul_lamSqArch_eq_one_of_forall_ne_zero_localZeta31_fe_rootNumber_of_isCubicInductionDataOn_of_archPackage_of_inv_eq_psiQ538 below · depth 20 - Identified local functional equation passes to the cyclic span
LanglandsTunnell.CubicInduction.localZeta31_identified_of_mem_gl3CyclicSubspace1 below · depth 20 - Central character law for the archimedean Whittaker function
LanglandsTunnell.CubicInduction.whittakerArch_scalar_mul_eq_centralChar_mul_of_isCubicInductionDataOn0 below · depth 20 - Global realisation of local Rankin–Selberg pairs at p
LanglandsTunnell.RankinSelberg.exists_factor_fundamentalDomain_forall_rsGlobalIntegral_realisation_member_twisted_of_finiteFamily_arch_of_archNonvanishing467 below · depth 20 - Cut-off remainder integrands of the dual finite cell are integrable
LanglandsTunnell.RankinSelberg.exists_forall_integrable_cutoff_remainder_mul_finprod_away113 below · depth 20 - Half-plane integrability of primal and dual finite cell integrands
LanglandsTunnell.RankinSelberg.exists_forall_integrable_rsFinCellIntegrand_translate_and_dual104 below · depth 20 - Pinned Rankin–Selberg niceness for a cubic base change
LanglandsTunnell.RankinSelberg.exists_isNicePinned_rsDatum_archOfParam_isArchCompAt_of_whittaker_link_of_isArithGenuineCuspRealizable_of_localWhittaker2,501 below · depth 20 - A non-vanishing rational local Rankin–Selberg pair at a level prime
LanglandsTunnell.RankinSelberg.exists_mem_rsLocalIntegral_ne_zero_and_rational_member_twisted_of_finiteFamily_arch_deep58 below · depth 20 - Finiteness, continuity and unit phase of dual Whittaker products
LanglandsTunnell.RankinSelberg.finite_mulSupport_and_continuous_and_exists_phase_finprod_dualWhittakerFn3_away1 below · depth 20 - Swapping the S_Q-slots: dual and hybrid pure-tensor integrability
LanglandsTunnell.RankinSelberg.integrable_pureTensorTerm_dual_and_hybrid_of_integrable_cutoff_of_forall_lintegral_lt_top15 below · depth 20 - Reflection J acts by (-1)^{a₁} on the weight-zero class
LanglandsTunnell.archOccursInClassOf_archWeightChar_zero_archCasimirAt_apply_mul_J_eq_neg_one_pow_of_whittakerCoefficient_fibre_eq_archW_of_isCasimirEigen386 below · depth 20 - Selection of a minimal-weight cuspidal constituent with nonvanishing Whittaker vector
LanglandsTunnell.exists_agreesAwayFromFinite_twist_archCasimir_eigenvector_minimalWeight_mem_isCuspConstituent_whittaker_diagOne_ne_zero_of_whittakerCoefficient_fibre_eq_archW_of_isCasimirEigen484 below · depth 20 - Selecting a weight-one cusp form: odd principal case
LanglandsTunnell.exists_agreesAwayFromFinite_twist_archCasimir_eigenvector_weightOne_whittakerCoefficient_torus_eq_archW_mem_isCuspConstituent_whittaker_diagOne_ne_zero_of_whittakerCoefficient_fibre_eq_archW_of_ne_of_ne535 below · depth 20 - Weight-one Whittaker factorisation over the torus fibre
LanglandsTunnell.exists_whittaker_factorization_apply_one_ne_zero_localSpaceAt_of_archCasimir_eigenvector_weightOne_of_ne_of_torus_profile_eigen370 below · depth 20 - Affine invariance of adelic box integrals of F-periodic functions
NumberField.AdelicBox.setLIntegral_adelicBox_comp_mul_add_eq_of_periodic3 below · depth 20 - Fourier inversion on the finite adeles with explicit constant
NumberField.AdelicFourier.fourierIntegral_fourierIntegral_finiteAdeleRing_eq12 below · depth 20 - Compactness and openness of the annihilator of widehat𝒪_F
NumberField.AdelicFourier.isCompact_and_isOpen_setOf_forall_addChar_finitePart_mul_eq_one5 below · depth 20 - Adelic Poisson summation for pure tensors, unnormalised measure
NumberField.AdelicFourier.tsum_eq_inv_measure_mul_tsum_fourierIntegral_of_mem_pureTensorSet25 below · depth 20 - Stability of weight-one isotypic vectors under reflected lowering
AutomorphicForm.CuspidalConstituent.add_smul_reflect_lower_mem_and_isIsotypicCuspFormAt_of_mem_isCuspConstituent269 below · depth 21 - Real-place archimedean core hypotheses for pure-weight cut vectors
AutomorphicForm.CuspidalConstituent.coreHypotheses_of_mem_cut_of_forall_hasArchCharacterAt216 below · depth 21 - Core archimedean hypotheses for pure-weight cut vectors, totally real case
AutomorphicForm.CuspidalConstituent.coreHypotheses_of_mem_cut_of_forall_hasArchCharacterAt_of_forall_isReal211 below · depth 21 - Weight decomposition of cut vectors at real places
AutomorphicForm.CuspidalConstituent.exists_eq_sum_hasArchCharacterAt_archWeightCharAt_of_isCuspConstituent0 below · depth 21 - Whittaker coefficients of a cut vector, uniformly over K_∞
AutomorphicForm.CuspidalConstituent.exists_forall_whittakerCoefficient_mul_eq_sum_mul_whittakerCoefficient_mul_diagOne_norm_infinitePlace_eq_one_of_isCuspConstituent5 below · depth 21 - Power bound at a complex place for torus Whittaker coefficients
AutomorphicForm.CuspidalConstituent.exists_norm_whittakerCoefficient_diagOne_mul_le_min_norm_infinitePlace_rpow_of_isComplex_of_glArch_eq_one225 below · depth 21 - Archimedean decay of torus Whittaker coefficients, two complex places
AutomorphicForm.CuspidalConstituent.exists_norm_whittakerCoefficient_diagOne_mul_le_prod_norm_infinitePlace_rpow_mul_min_rpow_of_forall_hasArchCharacterAt_of_two_le_card_isComplex_of_glArch_eq_one283 below · depth 21 - Section law, shell majorant and base value after shell surgery
AutomorphicForm.RankinSelberg.exists_finset_norm_whittakerCoefficient_sq_mul_norm_section_le_shell_indicator_of_shell_surgery10 below · depth 21
… and 160 more statements (search for the module name to find them).