Definitions/Def_AutomorphicForm_AdelicLsXi.lean
Carriers for the adelic automorphic space
Throughout, R is a Dedekind domain with fraction field K (the typeclasses IsDedekindDomain, IsFractionRing are assumed), and AdelicGL2 R K abbreviates \mathrm{GL}_2(\mathbb{A}_K), i.e. Matrix.GeneralLinearGroup (Fin 2) (AdeleRing R K). Two group homomorphisms into it are named: globalPoints, the entrywise image of \mathrm{GL}_2(K) under the structure map K \to \mathbb{A}_K, and centralScalar, the embedding \mathbb{A}_K^\times \to \mathrm{GL}_2(\mathbb{A}_K) sending z to the scalar matrix z\cdot I. Three predicates on a character \chi : \mathbb{A}_K^\times \to \mathbb{C}^\times (a bare monoid homomorphism; no continuity is imposed) are recorded: IsIdeleClassChar, that \chi kills the principal ideles, \chi(u)=1 for all u \in K^\times; IsUnitaryChar, that \lVert \chi(x)\rVert = 1 for all x; and, relative to a subgroup Z \le \mathbb{A}_K^\times with a character \xi : Z \to \mathbb{C}^\times, SquaresToXi, that \chi(z)^2 = \xi(z) for all z \in Z. Finally chiDet χ is the function g \mapsto \chi(\det g) on \mathrm{GL}_2(\mathbb{A}_K).
The two main carriers concern a function \varphi : \mathrm{GL}_2(\mathbb{A}_K) \to \mathbb{C}. The structure IsLsXiFunction R K Z ξ φ has exactly two fields: left invariance, \varphi(\gamma g) = \varphi(g) for all \gamma \in \mathrm{GL}_2(K) (embedded by globalPoints) and all g; and the central transformation law \varphi(z\cdot I\,g) = \xi(z)\varphi(g) for z \in Z. The structure LsXiMember R K Z ξ D φ extends this by a single further field, memLp_two: \varphi \in L^2 for the measure volume restricted to a set D \subseteq \mathrm{GL}_2(\mathbb{A}_K). Here the measure comes from an assumed MeasureSpace instance on \mathrm{GL}_2(\mathbb{A}_K) — no Haar property is required — and D is an arbitrary set, not required to be a fundamental set for \mathrm{GL}_2(K)Z. No smoothness, K-finiteness, moderate growth or cuspidality condition appears. The lemmas isLsXiFunction_zero and lsXiMember_zero check that the zero function satisfies both.
Relation to Mathlib
Mathlib supplies the ingredients (AdeleRing, Matrix.GeneralLinearGroup, MemLp) but has no notion of automorphic forms on adelic \mathrm{GL}_2; the predicates and structures here are the project's own.
Where it is used
This is the carrier layer for the adelic automorphic L^2 space L_s(\xi) on \mathrm{GL}_2, on which the project's automorphic and cuspidal realisation notions are built, in the direction of the Jacquet–Langlands and Langlands–Tunnell input to the proof. The module is imported very widely in the development.
References
- R. P. Langlands, Base Change for GL(2), Annals of Mathematics Studies 96, Princeton University Press, 1980
- D. Bump, Automorphic Forms and Representations, Cambridge Studies in Advanced Mathematics 55, Cambridge University Press, 1997
- S. S. Gelbart, Automorphic Forms on Adèle Groups, Annals of Mathematics Studies 83, Princeton University Press, 1975
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 56 lines
- 14 declarations
- used in the statements of 204 theorems and imported by 300 proofs
- imports 0 definition modules
Source file: Definitions/Def_AutomorphicForm_AdelicLsXi.lean
Imports
- only Mathlib
Imported by
Def_AutomorphicForm_AdelicKernelDef_AutomorphicForm_AdelicMaximalCompactDef_AutomorphicForm_BorelSubgroupDef_AutomorphicForm_CarrierPinsDef_AutomorphicForm_EtaFamilyDef_AutomorphicForm_IwasawaShellIndexDef_AutomorphicForm_ResidualSpanDef_AutomorphicForm_TwistedCuspKernelDef_AutomorphicForm_UnipotentQuotientDef_AutomorphicForm_WeylIntertwiningDef_HeckeCharacter_FiniteOrderDef_LanglandsTunnell_CubicInduction_Carrier
Declarations
- abbrev
AutomorphicForm.AdelicGL2 - def
AutomorphicForm.globalPoints - def
AutomorphicForm.centralScalar - def
AutomorphicForm.IsIdeleClassChar - def
AutomorphicForm.IsUnitaryChar - def
AutomorphicForm.SquaresToXi - structure
AutomorphicForm.IsLsXiFunction - field
AutomorphicForm.IsLsXiFunction.left_invariant - field
AutomorphicForm.IsLsXiFunction.central_transform - theorem
AutomorphicForm.isLsXiFunction_zero - structure
AutomorphicForm.LsXiMember - field
AutomorphicForm.LsXiMember.memLp_two - theorem
AutomorphicForm.lsXiMember_zero - def
AutomorphicForm.chiDet
Source
import Mathlib open NumberField MeasureTheory Matrix noncomputable section namespace AutomorphicForm variable (R K : Type*) [CommRing R] [IsDedekindDomain R] [Field K] [Algebra R K] [IsFractionRing R K] abbrev AdelicGL2 : Type _ := Matrix.GeneralLinearGroup (Fin 2) (AdeleRing R K) def globalPoints : Matrix.GeneralLinearGroup (Fin 2) K →* AdelicGL2 R K := Matrix.GeneralLinearGroup.map (algebraMap K (AdeleRing R K)) def centralScalar : (AdeleRing R K)ˣ →* AdelicGL2 R K := Matrix.GeneralLinearGroup.scalar (Fin 2) def IsIdeleClassChar (χ : (AdeleRing R K)ˣ →* ℂˣ) : Prop := ∀ u : Kˣ, χ (Units.map (algebraMap K (AdeleRing R K)) u) = 1 def IsUnitaryChar (χ : (AdeleRing R K)ˣ →* ℂˣ) : Prop := ∀ x : (AdeleRing R K)ˣ, ‖((χ x : ℂˣ) : ℂ)‖ = 1 def SquaresToXi (Z : Subgroup (AdeleRing R K)ˣ) (ξ : Z →* ℂˣ) (χ : (AdeleRing R K)ˣ →* ℂˣ) : Prop := ∀ z : Z, χ (z : (AdeleRing R K)ˣ) ^ 2 = ξ z variable (Z : Subgroup (AdeleRing R K)ˣ) (ξ : Z →* ℂˣ) structure IsLsXiFunction (φ : AdelicGL2 R K → ℂ) : Prop where left_invariant : ∀ (γ : Matrix.GeneralLinearGroup (Fin 2) K) (g : AdelicGL2 R K), φ (globalPoints R K γ * g) = φ g central_transform : ∀ (z : Z) (g : AdelicGL2 R K), φ (centralScalar R K (z : (AdeleRing R K)ˣ) * g) = ((ξ z : ℂˣ) : ℂ) * φ g theorem isLsXiFunction_zero : IsLsXiFunction R K Z ξ (fun _ => (0 : ℂ)) := ⟨fun _ _ => rfl, fun _ _ => by simp⟩ variable [MeasureSpace (AdelicGL2 R K)] (D : Set (AdelicGL2 R K)) structure LsXiMember (φ : AdelicGL2 R K → ℂ) : Prop extends IsLsXiFunction R K Z ξ φ where memLp_two : MemLp φ 2 ((volume : Measure (AdelicGL2 R K)).restrict D) theorem lsXiMember_zero : LsXiMember R K Z ξ D (fun _ => (0 : ℂ)) := ⟨isLsXiFunction_zero R K Z ξ, MemLp.zero'⟩ def chiDet (χ : (AdeleRing R K)ˣ →* ℂˣ) : AdelicGL2 R K → ℂ := fun g => ((χ (Matrix.GeneralLinearGroup.det g) : ℂˣ) : ℂ) end AutomorphicForm end
Statements phrased using this module (204)
- Strong approximation for GL₂/ℚ at level N with positivity
NumberField.AdelicLevel.exists_globalPoints_mul_mem_levelOne_rat4 below · depth 11 - Strong approximation for GL₂/ℚ at finite level K₁(N)
NumberField.AdelicLevel.exists_glFin_globalPoints_mul_mem_finiteLevelOne_rat3 below · depth 12 - Every finite adelic GL₂ matrix over ℚ is globally integralisable
NumberField.AdelicLevel.exists_globalPoints_mul_mem_finiteIntegralGL2_rat0 below · depth 13 - Right convolution by a factorizable test function: continuity and Cᵈ⁺¹ regularity
AutomorphicForm.continuous_rightConv_and_contDiff_of_isFactorizableTestFn2 below · depth 14 - Siegel finiteness for ample centre-cut Siegel sets
AutomorphicForm.finite_setOf_exists_globalPoints_mul_mem_image_centreCutSiegelSetAmple4 below · depth 15 - Left B(K)-invariance of the box constant term
AutomorphicForm.constantTerm_adelicBox_globalPoints_mul_of_mem_borelSubgroup4 below · depth 16 - Unipotent invariance of the box constant term on GL₂(A_K)
AutomorphicForm.constantTerm_adelicBox_unipotentGL2_mul0 below · depth 16 - Principal ideles have idele norm one, via det on GL₂
AutomorphicForm.ideleNorm_det_globalPoints3 below · depth 16 - Hecke characters realising narrow ray class characters
LT.HeckeChar.exists_heckeCharOfRayClassChar0 below · depth 16 - Square-integrability of translate sums on a Siegel window
LanglandsTunnell.Converse.CuspSynthesis.memLp_translateSum45 below · depth 16 - Rigidity of idele class characters under base change to ℚ
LanglandsTunnell.RankinSelberg.eq_comp_idelicNorm_of_forall_under_notMem_uniformizerIdele_eq_pow_inertiaDeg10 below · depth 16 - Rigidity of idele class characters over ℚ
LanglandsTunnell.RankinSelberg.eq_comp_idelicNorm_of_forall_uniformizerIdele_eq_pow_inertiaDeg10 below · depth 16 - Uniformly bounded multiplicity of finitely many ample Siegel translates
AutomorphicForm.exists_forall_ncard_setOf_globalPoints_mul_mem_iUnion_centreCutSiegelSetAmple_le5 below · depth 17 - Uniform L² bound over compacta by fundamental-domain mass
AutomorphicForm.exists_forall_setLIntegral_nnnorm_sq_le_mul_setLIntegral_of_isLsXiFunction_of_isCompact_of_isFundamentalDomain9 below · depth 17 - Central character of a non-zero continuous L_{s,ξ}-function
AutomorphicForm.isIdeleClassChar_and_continuous_of_isLsXiFunction_of_continuous0 below · depth 17 - Estimates for the Whittaker series of a nice JL datum
LanglandsTunnell.Converse.CuspSynthesis.exists_growth_exponent_and_local_majorant_and_bounded_on_siegel_of_isJLNice23 below · depth 17 - Existence of a fundamental domain for GL₂(F)backslashGL₂(A_F)
AutomorphicForm.exists_isFundamentalDomain_globalPoints_range8 below · depth 18 - Nonvanishing Whittaker coefficient at a diagonal point over ℚ
AutomorphicForm.exists_whittakerCoefficient_one_diagOne_ne_zero_of_glFin_eq_one_rat2 below · depth 19 - Differentiating right convolution along archimedean unipotent directions
AutomorphicForm.hasDerivAt_rightConv_mul_unipotentGL2_and_isFactorizableTestFn_leftDeriv_and_linear2 below · depth 19 - Factorizable test functions are stable under twisting by η∘det
AutomorphicForm.isFactorizableTestFn_chiDet_mul_of_continuous_of_isOfFinOrder0 below · depth 19 - Local double-coset sums preserve isotypic cusp forms
AutomorphicForm.isIsotypicCuspFormAt_sum_apply_mul_finEmbed_localEmbed_of_isHeckeCosetSystem23 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 - Hecke coset system for Uᵥ at a place dividing the level
HeckeIntegralSeam.exists_isHeckeCosetSystem_localRepSome_heckeGen_of_dvd0 below · depth 19 - Triviality of an idele class character with trivial local components
NumberField.TateGlobal.eq_one_of_isIdeleClassChar_of_continuous_of_forall_localChar_eq_one2 below · depth 19 - Cuspidal automorphic functions vanishing on a covering window vanish
AutomorphicForm.eq_zero_of_isCuspAutomorphicFnAt_productionPinsOf_of_coversModCentre_of_forall_mem_eq_zero1 below · depth 20 - Restriction of an idele class character to a subfield
NumberField.TateGlobal.exists_isIdeleClassChar_continuous_localChar_eq_finprod_localChar_extension_algebraMap0 below · depth 20 - Vanishing on a set covering modulo GL₂(F) and the centre
AutomorphicForm.eq_zero_of_isLsXiFunction_of_coversModCentre_of_forall_mem_eq_zero0 below · depth 21 - Vanishing of the isotypic cusp space when v∣ N
AutomorphicForm.isotypicCuspSubmodule_productionPinsOf_principal_eq_bot_of_dvd1 below · depth 21 - Integrable domination of archimedean translates of a Schwartz–Bruhat function
NumberField.AdelicFourier.exists_integrable_forall_norm_comp_sub_smul_le0 below · depth 21 - Archimedean directional derivatives of Schwartz–Bruhat functions on A_F
NumberField.AdelicFourier.exists_mem_schwartzBruhat_hasDerivAt_comp_sub_smul0 below · depth 21 - Invariance of the archimedean height under central scalars
AutomorphicForm.archHeight_glArch_centralScalar_mul0 below · depth 22 - Fibre-sum spectral comparison for twisted GL₂ at prime degree
AutomorphicForm.fibreSum_twistedCutTrace_eq_const_mul_fibreSum_cutTrace_of_docks_ed23,000 below · depth 22 - Vanishing of level-one isotypic cusp spaces at primes dividing the level
AutomorphicForm.isotypicCuspSubmodule_productionPinsOf_levelOne_eq_bot_of_dvd1 below · depth 22 - Hecke word comparison of twisted and untwisted cut traces
AutomorphicForm.exists_atoms_forall_exists_noAtomicMass_heckeWordSum_twistedCutTrace_sub_finrank_mul_const_mul_heckeWordSum_cutTrace_eq2,972 below · depth 23 - Formal base change of an Eisenstein Hecke table is Eisenstein
AutomorphicForm.exists_eisensteinTableOf_eq_formalBaseChange_eisensteinTableOf6 below · depth 23 - Fibre-sum vanishing from monomial identities at places of record
AutomorphicForm.forall_finset_fibreSum_sub_const_mul_fibreSum_add_eq_zero_of_forall_places_exists_noAtomicMass_wordSum_eq1 below · depth 23 - Satake data constant on fibres over K, given word-shift
AutomorphicForm.satakeData_eq_of_under_eq_of_twistedCutTrace_ne_zero_of_heckeWordShift0 below · depth 23 - Twisted elliptic–central fold as weighted twisted orbital integrals
AutomorphicForm.setIntegral_twistedCentralEllipticFold_eq_finsum_inv_card_mul_setIntegral_sigmaCentralizerDomain100 below · depth 23 - Absolute summability of Siegel-pinned cut traces on GL₂
AutomorphicForm.summable_norm_cutTrace_of_isUnitFactorizableOfTypeAt_of_coversModCentre96 below · depth 23 - Satake table of a principal-level cuspidal class lies in a box
AutomorphicForm.table_mem_box_of_mem_cuspClasses_siegel119 below · depth 23 - Hecke tables of cuspidal slab classes lie in the box
AutomorphicForm.table_mem_box_of_mem_cuspClasses_slab18 below · depth 23 - Nonvanishing Haar mass of a norm band of idele classes
AutomorphicForm.toReal_measure_inter_setOf_ideleNorm_det_centralScalar_mem_Icc_ne_zero7 below · depth 23 - Hecke generator inverse double-coset relation at level U₁(N)
NumberField.AdelicLevel.exists_heckeGen_inv_eq_centralScalar_mul_mul_heckeGen_mul_levelOne1 below · depth 23 - Double-coset inversion relation for Hecke generators at principal level
NumberField.AdelicLevel.exists_heckeGen_inv_eq_centralScalar_mul_mul_heckeGen_mul_principalLevel1 below · depth 23 - Adelic matching for prime-degree cyclic base change of GL₂
AutomorphicForm.exists_areMatchingOn_and_central_adeleRing_of_areMatchingAt_of_prime715 below · depth 24 - Finiteness of twisted elliptic and central classes meeting a compact support
AutomorphicForm.finite_sep_exists_twistedKernelSummand_ne_zero_of_hasCompactSupport11 below · depth 24 - Twisted orbital expansion of the elliptic and central kernel part
AutomorphicForm.hasSum_setIntegral_setIntegral_twistedOrbital_of_normClass_elliptic_or_central6 below · depth 24 - Class-by-class expansion of a twisted GL₂ kernel integral
AutomorphicForm.hasSum_setIntegral_sigmaCentralizer_of_lintegral_tsum_enorm_lt_top0 below · depth 24 - Per-word twisted spectral comparison from the remainder rows
AutomorphicForm.heckeWordSum_twistedCutTrace_sub_const_mul_heckeWordSum_cutTrace_add_atoms_eq_of_remainder_rows_of_comparison194 below · depth 24 - Finiteness of the elliptic–central part of the twisted kernel
AutomorphicForm.lintegral_lintegral_tsum_enorm_twistedKernel_normClass_elliptic_or_central_lt_top93 below · depth 24 - Hecke generator inverse in a central-times-level double coset
NumberField.AdelicLevel.exists_heckeGen_inv_eq_centralScalar_mul_mul_heckeGen_mul_of_forall_finEmbed_localEmbed_mem0 below · depth 24 - Adelic matching of orbital integrals for prime-degree base change on GL₂
AutomorphicForm.areMatchingOn_and_central_adeleRing_of_areMatchingAt_of_prime_of_factorization713 below · depth 25 - Uniform bound on elliptic–central twisted kernel terms off the identity family
AutomorphicForm.exists_forall_encard_setOf_twistedKernelSummand_ne_zero_not_identityFamily_le23 below · depth 25 - Orbital integral at a central element of GL₂(A_K)
AutomorphicForm.exists_isHaarMeasure_and_isOrbitalIntegralOn_centralScalar_smul_adelicGLHaar1 below · depth 25 - Finiteness of the σ-twisted scalar-class kernel integral
AutomorphicForm.lintegral_lintegral_tsum_enorm_twistedKernel_identityFamily_lt_top85 below · depth 25 - Twisted norm of a scalar idele in odd-degree cyclic descent
AutomorphicForm.mem_range_idelicNorm_of_isNormOf_centralScalar_of_odd3 below · depth 25 - Absolute summability of cut traces over Siegel-pinned cusp classes
AutomorphicForm.summable_norm_cutTrace_of_isUnitFactorizableOfTypeAt_of_coversModCentre_of_subset96 below · depth 25 - Fibre integration of the idele norm over a fundamental domain
NumberField.TateGlobal.exists_setIntegral_comp_ideleNorm_eq_mul_integral_Ioi_and_setIntegral_ideleNorm_cpow_eq_div51 below · depth 25 - Tate's main theorem: entire part plus polar part
NumberField.TateGlobal.exists_setIntegral_eq_entirePart_add_polarPart_and_fe_of_thetaInversion54 below · depth 25 - Finite Haar volume of a determinant slab inside a twisted-centraliser tube
AutomorphicForm.adelicGLHaar_inter_setOf_inv_mul_sigmaAdelicAct_mem_center_mul_lt_top_of_forall_smul_inter76 below · depth 26 - Vanishing at non-norm central ideles for matching test functions
AutomorphicForm.apply_centralScalar_eq_zero_of_not_exists_isNormOf_of_isUnitFactorization_of_prime41 below · depth 26 - Continuity and compact support of truncated elliptic orbital integrals
AutomorphicForm.continuous_and_hasCompactSupport_setIntegral_fundamentalDomain_conj_centralScalar_mul_of_mem_ellipticCell20 below · depth 26 - Properness modulo the centre of the twisted orbit map on GL₂(A_L)
AutomorphicForm.exists_isCompact_forall_exists_inv_mul_sigmaAdelicAct_mem_center_of_mem_center_mul16 below · depth 26 - Haar normalisation on the centralizer of an adelic scalar in GL₂
AutomorphicForm.exists_isHaarMeasure_centralizer_forall_isFundamentalDomain_op_inter_eq_mul_log_and_isOrbitalIntegralOn_centralScalar_iff22 below · depth 26 - Logarithmic band covolume in a twisted centralizer of a scalar class
AutomorphicForm.exists_measure_fundamentalDomain_op_twistedCentralizer_inter_ideleNorm_det_Icc_eq_mul_log_of_eq_scalar27 below · depth 26 - Idelic norms are norm strings of adelic scalar matrices
AutomorphicForm.exists_normString_scalar_eq_toTensorGL_centralScalar_of_mem_range_idelicNorm3 below · depth 26 - Finiteness of central and elliptic terms for GL₂
AutomorphicForm.finite_sep_exists_apply_inv_mul_globalPoints_mul_centralScalar_mul_ne_zero_of_hasCompactSupport12 below · depth 26 - Finiteness of continuous idele class characters of square ξ and level N
AutomorphicForm.finite_setOf_squaresToXi_continuous_apply_det_eq_one_of_mem_principalLevel5 below · depth 26 - GL₂(L⊗_KA_K)≅ GL₂(A_L) respects Galois action and embeddings
AutomorphicForm.map_genuineRingEquiv_sigmaGL_and_toTensorGL_and_includeLeft1 below · depth 26 - Adelic matching at σ-classes with central norm, prime degree
AutomorphicForm.mul_eq_mul_of_isTwistedOrbitalIntegralOn_of_isOrbitalIntegralOn_centralScalar_of_areMatchingLocal696 below · depth 26 - Scalar stabilising γ₀ leaves the centralizer-domain integral unchanged
AutomorphicForm.setIntegral_fundamentalDomain_conj_centralScalar_mul_eq_of_scalar_mul_eq_conj9 below · depth 26 - Vanishing of a truncated elliptic orbital term for GL₂
AutomorphicForm.setIntegral_fundamentalDomain_conj_centralScalar_mul_eq_zero_of_forall_isOrbitalIntegralOn_eq_zero20 below · depth 26 - Slab integral of f(x⁻¹γ x): covolume times orbital integral
AutomorphicForm.setIntegral_fundamentalDomain_slab_eq_measureReal_mul_of_isOrbitalIntegralOn12 below · depth 26 - Twisted slab identity: covolume times twisted orbital integral
AutomorphicForm.setIntegral_fundamentalDomain_slab_sigmaAdelicAct_eq_measureReal_mul_integral_map_of_isTwistedSectionFnOn18 below · depth 26 - Twisted slab identity for one twisted class in GL₂
AutomorphicForm.setIntegral_fundamentalDomain_slab_sigmaCentralizer_eq_measureReal_mul_integral_of_forall_exists_mem_center7 below · depth 26 - Tate's truncated zeta integral under theta inversion
NumberField.TateGlobal.setIntegral_eq_upperHalves_add_poleIntegrals_of_thetaInversion53 below · depth 26 - Vanishing of int_Ω χ(a)g(‖a‖) dν for χ nontrivial on norm-one ideles
NumberField.TateGlobal.setIntegral_mul_apply_ideleNorm_eq_zero_of_isIdeleClassChar_of_exists_ideleNorm_eq_one_ne3 below · depth 26 - Existence of adelic orbital integrals at regular semisimple γ
AutomorphicForm.IsOrbitalIntegralOn.exists_adeleRing_of_isRegularSemisimple4 below · depth 27 - Matching transports central translates along the idelic norm
AutomorphicForm.eq_comp_idelicNorm_of_isTwistedOrbitalIntegralOn_centralScalar_mul_of_isOrbitalIntegralOn_centralScalar_mul_of_areMatchingOn4 below · depth 27 - Twisted centralizer of δ versus centralizer of its norm
AutomorphicForm.exists_continuousMulEquiv_twistedCentralizer_centralizer_coupled_of_isNormRep0 below · depth 27 - Elliptic orbital integrals of central translates, continuous and compactly supported in u
AutomorphicForm.exists_continuous_hasCompactSupport_forall_isOrbitalIntegralOn_mul_centralScalar_of_mem_ellipticCell5 below · depth 27 - Countably many continuous unitary idele class characters on A_K¹
AutomorphicForm.exists_countable_family_isUnitaryChar_isIdeleClassChar_forall_exists_eqOn_normOneIdeles5 below · depth 27 - Hilbert's Theorem 90 for GL₂ over adeles
AutomorphicForm.exists_eq_inv_mul_sigmaAdelicAct_of_prod_sigmaAdelicAct_pow_eq_one4 below · depth 27 - Properness of the twisted orbit map modulo the twisted centralizer
AutomorphicForm.exists_isCompact_setOf_twistedConj_mem_subset_twistedCentralizer_mul_of_forall_ne_scalar_of_finrank_eq_two6 below · depth 27 - Uniform finite volume bound on determinant slabs in the twisted locus
AutomorphicForm.exists_lt_top_forall_measure_preimage_le_of_isHaarMeasure_eqLocus_sigmaAdelicAct_center75 below · depth 27 - Log-linearity of norm-band covolumes for elliptic centralizer tori
AutomorphicForm.exists_measure_fundamentalDomain_centralizer_inter_ideleNorm_det_Icc_eq_mul_log_of_mem_ellipticCell8 below · depth 27 - Log-linear band volume for GL₂(K) in a central centralizer
AutomorphicForm.exists_measure_fundamentalDomain_op_centralizer_inter_ideleNorm_det_Icc_eq_mul_log_of_mem_center21 below · depth 27 - Log-linear band covolume for twisted centralizers in degree two
AutomorphicForm.exists_measure_fundamentalDomain_op_twistedCentralizer_inter_ideleNorm_det_Icc_eq_mul_log_of_forall_ne_scalar_of_finrank_eq_two29 below · depth 27 - Adelic norm string of a scalar from local data, odd prime degree
AutomorphicForm.exists_normString_scalar_eq_toTensorGL_centralScalar_of_forall_of_finrank_ne_two8 below · depth 27 - Unimodularity of the σ-twisted centraliser modulo the centre
AutomorphicForm.isMulRightInvariant_of_isHaarMeasure_eqLocus_sigmaAdelicAct_center6 below · depth 27 - Unimodularity of the adelic twisted centraliser with central norm
AutomorphicForm.isMulRightInvariant_twistedCentralizer_adeleRing_of_normString_eq_toTensorGL_centralScalar_of_finrank_eq_two13 below · depth 27 - Global central transfer with coupled measures: c_K I' = c_L I
AutomorphicForm.mul_eq_mul_of_isTwistedOrbitalIntegralOn_of_isOrbitalIntegralOn_centralScalar_of_coupled116 below · depth 27 - Global matching at central-norm classes of the second kind
AutomorphicForm.mul_eq_mul_of_isTwistedOrbitalIntegralOn_of_isOrbitalIntegralOn_centralScalar_of_forall_ne_scalar_of_finrank_eq_two689 below · depth 27 - Torus quotient in a determinant slab for GL₂(A_F)
AutomorphicForm.setIntegral_fundamentalDomain_slab_eq_measureReal_smul_integral_of_forall_integral_eq_one6 below · depth 27 - Compact-set L² bound by the truncation domain L² norm
AutomorphicForm.exists_forall_eLpNorm_restrict_le_mul_eLpNorm_restrict_canonicalTruncationDomain_of_isLsXiFunction20 below · depth 28 - Fujisaki compactness for twisted centralizers of second-kind GL₂ classes
AutomorphicForm.exists_isCompact_forall_exists_mem_sigmaCentralizer_eq_mul_of_ideleNorm_det_eq_one_of_forall_ne_scalar_of_finrank_eq_two7 below · depth 28 - Twisted centraliser of the scalars in adelic GL₂
AutomorphicForm.exists_isCompact_subset_center_forall_eq_mul_mul_scalar_of_inv_mul_sigmaAdelicAct_mem_center51 below · depth 28 - Section functions for regular semisimple adelic GL₂ orbital integrals
AutomorphicForm.exists_isSectionFnOn_adeleRing_of_isRegularSemisimple3 below · depth 28 - Uniform finite volume bound on determinant slabs for σ-fixed points
AutomorphicForm.exists_lt_top_forall_measure_preimage_le_of_isHaarMeasure_eqLocus_sigmaAdelicAct_id22 below · depth 28 - Finiteness of hyperbolic σ-twisted classes meeting a compact support
AutomorphicForm.finite_sep_exists_apply_inv_mul_globalPoints_mul_sigmaAdelicAct_ne_zero_of_diagonal_of_hasCompactSupport5 below · depth 28 - Unimodularity of the σ-fixed subgroup of GL₂(A_L)
AutomorphicForm.isMulRightInvariant_of_isHaarMeasure_eqLocus_sigmaAdelicAct_id4 below · depth 28 - Same central norm string implies σ-conjugacy for GL₂ over adeles
AutomorphicForm.isSigmaConjugate_adeleRing_of_normString_eq_of_normString_mem_center_of_finrank_eq_two4 below · depth 28 - Covolume rates of GL₂(A_K) and a twisted centraliser
AutomorphicForm.mul_eq_two_mul_of_forall_isFundamentalDomain_twistedCentralizer_measure_inter_ideleNorm_det_Icc_of_forall_ne_scalar_of_finrank_eq_two489 below · depth 28 - Norm string of a central idele equals its idelic norm
AutomorphicForm.normString_map_baseChangeEquiv_symm_centralScalar_eq_toTensorGL_centralScalar_idelicNorm3 below · depth 28 - Finiteness of split rational classes meeting a compact set
AutomorphicForm.exists_finset_forall_apply_conj_centralScalar_mul_diagUnits2_eq_zero_of_hasCompactSupport1 below · depth 29 - Boundedness of χ∘det on a determinant slab in Siegel sets
AutomorphicForm.exists_forall_norm_chiDet_le_of_mem_setOf_ideleNorm_det_inter_iUnion_image_centreCutSiegelSet4 below · depth 29 - Twisted orbital integral transforms by a central character value
AutomorphicForm.integral_mul_apply_inv_mul_mul_sigmaAdelicAct_centralScalar_mul_eq_of_inv_mul_mul_sigmaAdelicAct_eq_mul_centralScalar0 below · depth 29 - Hecke words multiply η∘det integrals by local character sums
AutomorphicForm.integral_mul_chiDet_eq_prod_sum_localChar_mul_integral_of_isSemiLocalFactorization0 below · depth 29 - Translation on the twisted commutant scales Haar by ‖det t‖_L⁻¹
AutomorphicForm.map_mul_addHaar_twistedCommutant_eq_inv_distribHaarChar_det_smul_of_normString_eq_toTensorGL_centralScalar_of_finrank_eq_two2 below · depth 29 - Covolume rate for GL₂ over the adeles
AutomorphicForm.rate_eq_mul_discr_sq_mul_dedekindZeta_two_mul_residue_of_forall_isFundamentalDomain_globalPoints_inter_ideleNorm_det_Icc94 below · depth 29 - Vanishing of a twisted determinant-character integral over a fundamental domain
AutomorphicForm.setIntegral_chiDet_sigmaAdelicAct_mul_chiDet_inv_eq_zero_of_isFundamentalDomain_slab9 below · depth 29 - Unweighted split-class expansion of the ground-field hyperbolic slope
AutomorphicForm.slope_eq_sum_unweighted_classIntegral_diagUnits2_of_inversionClosed_of_hyperbolicTerm_eq_affine227 below · depth 29 - Mass formula for the σ-twisted centralizer of δ
AutomorphicForm.two_mul_rate_eq_mul_discr_sq_mul_dedekindZeta_two_mul_residue_of_forall_isFundamentalDomain_twistedCentralizer_inter_ideleNorm_det_Icc_of_forall_ne_scalar_of_finrank_eq_two444 below · depth 29 - Central unit idele at v ∤ N lies in U(N)
NumberField.AdelicLevel.centralScalar_finIncl_localUnit_mem_principalLevel_inf_finiteAdelicGL2Subgroup0 below · depth 29 - Iwasawa unfolding of the unipotent term, semi-locally factorizable case
UnipotentTermUnfolding.exists_forall_integrableOn_and_lintegral_ne_top_and_setIntegral_unipotentTerm_eq_mul_integral_iwasawa_of_isSemiLocalFactorization102 below · depth 29 - Fibrewise finiteness of the unipotent term in Iwasawa coordinates
UnipotentTermUnfolding.forall_exists_lintegral_iwasawa_tsum_tsum_enorm_sub_ne_top_of_isSemiLocalFactorization102 below · depth 29 - Norm string of a diagonal datum over cyclic L/K
AutomorphicForm.exists_diagonal_normString_eq_toTensorGL_globalPoints_of_baseChangeGL_eq_globalPoints0 below · depth 30 - Hyperbolic slope and intercept as sums of orbital integrals
AutomorphicForm.exists_finset_forall_slope_eq_sum_classIntegral_and_intercept_eq_sum_weightedClassIntegral_of_hyperbolicTerm_eq_affine225 below · depth 30 - Twisted hyperbolic slope and intercept as twisted orbital class sums
AutomorphicForm.exists_finset_forall_slope_eq_sum_twistedClassIntegral_and_intercept_eq_sum_weightedTwistedClassIntegral_haarQuotient_of_eq_affine241 below · depth 30 - Right convolution bounds L² of a slab domain by sup on compacta
AutomorphicForm.exists_forall_norm_rightConv_le_mul_eLpNorm_of_isLsXiFunction_of_isCompact_of_isFundamentalDomain_slab16 below · depth 30 - Twisted-class truncation weights collapse onto the Borel part
AutomorphicForm.exists_forall_tsum_indicator_add_indicator_weyl_mul_integral_eq_indicator_mul_setIntegral_mul_finsum_borel_sigmaConjClassOrbit8 below · depth 30 - Properness of regular hyperbolic twisted GL₂-orbit maps adelically
AutomorphicForm.exists_isCompact_forall_exists_mem_mul_of_inv_mul_globalPoints_mul_sigmaAdelicAct_centralScalar_mul_mem_of_diagonal45 below · depth 30 - Test function with prescribed residue of a twisted orbital zeta integral
AutomorphicForm.exists_mem_schwartzBruhat2_tendsto_sub_one_mul_lintegral_twistedCentralizer_nhdsGT_one_of_forall_integral_eq_mul_prod_integral_of_forall_ne_scalar_of_finrank_eq_two412 below · depth 30 - Archimedean component of scalar(z)cdotdiag(a,b)
AutomorphicForm.glArch_centralScalar_mul_diagUnits20 below · depth 30 - Constant term of an upper-triangular twisted class as orbital integrals
AutomorphicForm.integrableOn_and_setIntegral_mul_constantTerm_finsum_borelSigmaConjClassOrbit_eq_inv_measure_mul_tsum_integral_integral8 below · depth 30 - Unfolding a class sum on adelic GL₂ over Hbackslash G
AutomorphicForm.integrableOn_tsum_and_setIntegral_tsum_comp_globalPoints_inv_mul_eq_integral_haarQuotient_setIntegral8 below · depth 30 - Modulus-one change of variables for twisted unipotent orbital integrals
AutomorphicForm.integral_integral_unipotentGL2_conj_twistedOrbital_eq_integral_mul_integral_and_lintegral_lt_top_of_norm_div_ne_one4 below · depth 30 - Linearity and measurability of adelic orbital integrals
AutomorphicForm.isOrbitalIntegralOn_sum_mul_centralScalar_mul_and_measurable_of_isRegularSemisimple7 below · depth 30 - Regular semisimplicity of the norm string of a diagonal global class
AutomorphicForm.isRegularSemisimple_normString_of_baseChangeGL_eq_globalPoints_of_norm_ne_one0 below · depth 30 - Unipotent integration formula for GL₂(A_K)
AutomorphicForm.measure_pow_three_mul_measure_mul_lintegral_mul_apply_col_det_eq_mul_dedekindZeta_two_mul_lintegral_of_forall_lintegral_mul_unipotentGL2_eq_one29 below · depth 30 - Central translates that are twisted norms yield idelic norms
AutomorphicForm.mem_range_idelicNorm_of_isNormOf_centralScalar_mul_globalPoints_diagUnits2_of_mem_range_norm3 below · depth 30 - Diagonal classes with non-norm ratio admit no twisted norm
AutomorphicForm.not_exists_isNormOf_centralScalar_mul_globalPoints_of_div_not_mem_range_norm127 below · depth 30 - Weil: GL₂ slab rate versus idelic rate and covolume
AutomorphicForm.rate_eq_mul_rate_mul_measure_pow_three_of_forall_lintegral_mul_apply_col_det_eq_mul_lintegral_of_forall_isFundamentalDomain_op_inter_ideleNorm_det_Icc50 below · depth 30 - Adjoint of right convolution on a slab fundamental domain
AutomorphicForm.setIntegral_rightConv_mul_conj_eq_setIntegral_mul_conj_rightConv_flat_of_isLsXiFunction_of_isFundamentalDomain_slab15 below · depth 30 - Unfolding a coset sum on Φ₀ to HbackslashGL₂(A_L)
AutomorphicForm.setLIntegral_tsum_comp_globalPoints_inv_mul_eq_lintegral_haarQuotient_setLIntegral_of_subgroup6 below · depth 30 - Left unipotent and central invariance of the adelic height
NumberField.AdelicHeight.adelicHeight_unipotentGL2_mul_and_centralScalar_mul0 below · depth 30 - Quadratic idele class character of a quadratic extension
NumberField.exists_isIdeleClassChar_ne_one_localChar_eq_one_of_mem_range_norm_of_finrank_eq_two136 below · depth 30 - Local components of an idele class character at non-norm places
NumberField.localChar_ne_one_of_range_norm_ne_top_of_isIdeleClassChar_of_finrank_eq_two264 below · depth 30 - Finiteness of the cusp-kernel truncation error over a Siegel shell
UnipotentTermCuspBound.exists_forall_setLIntegral_tsum_setLIntegral_enorm_cuspKernel_sub_cuspTruncation_ne_top91 below · depth 30 - Finiteness of the truncated unipotent-type term over Borel fibres
UnipotentTermCuspBound.exists_forall_setLIntegral_tsum_setLIntegral_enorm_mul_tsum_tsum_enorm_sub_ne_top90 below · depth 30 - Iwasawa unfolding of the unipotent cusp-kernel term
UnipotentTermUnfolding.exists_forall_setIntegral_unipotentTerm_eq_mul_integral_iwasawa30 below · depth 30 - Closed form of the central–elliptic base-change comparison constant
AutomorphicForm.centralEllipticConstant_eq_of_factorization_of_normFibre_of_exists_ne_zero909 below · depth 31 - v-component of a central local unit times diag(u,1)
AutomorphicForm.coe_finComponent_glFin_centralScalar_localUnit_mul_diagUnits20 below · depth 31 - Weyl symmetry of the local twisted-norm conditions
AutomorphicForm.exists_isNormOf_glArch_centralScalar_mul_diagUnits2_iff_inv_and_finComponent_iff_inv0 below · depth 31 - Residue of the twisted-centralizer zeta integral for standard test functions
AutomorphicForm.exists_isOpen_isCompact_tendsto_sub_one_mul_lintegral_twistedCentralizer_schwartzMap_mul_indicator_nhdsGT_one_of_forall_integral_eq_mul_prod_integral_of_finrank_eq_two371 below · depth 31 - Finiteness modulo the centre and continuity of the folded kernel
AutomorphicForm.finite_setOf_exists_apply_globalPoints_out_mul_centralScalar_mul_ne_zero_and_continuous_finsum_integral_of_hasCompactSupport3 below · depth 31 - Constant term of the centre-folded twisted GL₂ kernel
AutomorphicForm.integrableOn_and_measurable_and_constantTerm_setIntegral_mul_finsum_borel_div_mem_eq_setIntegral_mul_constantTerm_of_norm_ne_one7 below · depth 31 - Unfolding a partial twisted class sum against the idele centre
AutomorphicForm.integrableOn_and_setIntegral_mul_finsum_sigmaConjClassOrbit_cosetFamily_eq_tsum_subtype_integral1 below · depth 31
… and 54 more statements (search for the module name to find them).