Definitions/Def_AutomorphicForm_SigmaAdelicAction.lean
Galois twisting of adelic functions
The standing context is a field F, a number field E with an F-algebra structure, and a datum D of type M4aHerbrand.IdeleGaloisDescent (𝓞 E) F E: a monoid homomorphism \sigma \mapsto D.\mathrm{act}\,\sigma from E \simeq_{\mathrm{alg}[F]} E to the ring automorphisms of the adele ring \mathbb{A}_E = AdeleRing (𝓞 E) E, each continuous, and compatible with the principal embedding in the sense that D.\mathrm{act}\,\sigma applied to the image of x \in E is the image of \sigma x. Three definitions are made. First, sigmaAdelicAct F E D σ is the monoid endomorphism of \mathrm{GL}_2(\mathbb{A}_E) obtained by applying the ring homomorphism underlying D.\mathrm{act}\,\sigma to matrix entries. Second, for a complex-valued function \varphi on \mathrm{GL}_2(\mathbb{A}_E), the twist sigmaSectionActOn F E D σ φ is the precomposition \varphi \circ \mathrm{sigmaAdelicAct}\,\sigma. Third, given any measurable-space structure on \mathrm{GL}_2(\mathbb{A}_E) and any measure \nu_K on it, sigmaPairingOn F E D νK σ φ is the Bochner integral \int \varphi(k)\,\overline{\varphi^{\sigma}(k)}\,d\nu_K, with \varphi^{\sigma} the above twist and the bar complex conjugation; no Haar or compactness condition is imposed on \nu_K, which is a parameter to be supplied by the user.
The accompanying lemmas record that the family \sigma \mapsto \mathrm{sigmaAdelicAct}\,\sigma sends 1 to the identity and \sigma\tau to the composite of the endomorphisms attached to \sigma and \tau (stated as separate lemmas rather than bundled into an action), that each \mathrm{sigmaAdelicAct}\,\sigma is continuous, and that on the image of \mathrm{GL}_2(E) it agrees with entrywise application of \sigma. On the analytic side, the twist by 1 is the identity on functions, the pairing at \sigma = 1 is \int \varphi\,\overline{\varphi}\,d\nu_K, and the pairing of the zero function vanishes. A degenerate instance with E = F = \mathbb{Q} and the trivial descent is also recorded.
Relation to Mathlib
Mathlib supplies the adele ring, Matrix.GeneralLinearGroup.map and the Bochner integral used here; the Galois action on the adeles packaged as M4aHerbrand.IdeleGaloisDescent, and the resulting twisting operations on complex-valued functions on \mathrm{GL}_2 of the adeles, are the project's own notions.
Where it is used
This module fixes the vocabulary for Galois conjugation of adelic objects in two variables: the entrywise action of \mathrm{Gal}-type automorphisms on \mathrm{GL}_2(\mathbb{A}_E), the induced twist \varphi \mapsto \varphi^{\sigma} of complex-valued functions, and an integral pairing of a function against its twist, together with the compatibility of the action with the global points \mathrm{GL}_2(E).
References
- D. Bump, Automorphic Forms and Representations, Cambridge Studies in Advanced Mathematics 55, Cambridge University Press, 1997
- A. Weil, Basic Number Theory, Grundlehren der mathematischen Wissenschaften 144, Springer, 1974
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 96 lines
- 10 declarations
- used in the statements of 120 theorems and imported by 126 proofs
- imports 1 definition modules
Source file: Definitions/Def_AutomorphicForm_SigmaAdelicAction.lean
Declarations
- def
AutomorphicForm.sigmaAdelicAct - def
AutomorphicForm.sigmaSectionActOn - def
AutomorphicForm.sigmaPairingOn - theorem
AutomorphicForm.sigmaAdelicAct_one - theorem
AutomorphicForm.sigmaAdelicAct_mul - theorem
AutomorphicForm.continuous_sigmaAdelicAct - theorem
AutomorphicForm.sigmaAdelicAct_globalPoints - theorem
AutomorphicForm.sigmaSectionActOn_one - theorem
AutomorphicForm.sigmaPairingOn_one - theorem
AutomorphicForm.sigmaPairingOn_zero
Source
import Definitions.Def_M4aHerbrand_IdeleClassVocab set_option autoImplicit false open IsDedekindDomain NumberField noncomputable section namespace AutomorphicForm variable (F E : Type) [Field F] [Field E] [NumberField E] [Algebra F E] variable (D : M4aHerbrand.IdeleGaloisDescent (𝓞 E) F E) def sigmaAdelicAct (σ : E ≃ₐ[F] E) : Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E) →* Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E) := Matrix.GeneralLinearGroup.map (D.act σ : RingAut (AdeleRing (𝓞 E) E)).toRingHom def sigmaSectionActOn (σ : E ≃ₐ[F] E) (φ : Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E) → ℂ) : Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E) → ℂ := φ ∘ (sigmaAdelicAct F E D σ) def sigmaPairingOn [MeasurableSpace (Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E))] (νK : MeasureTheory.Measure (Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E))) (σ : E ≃ₐ[F] E) (φ : Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E) → ℂ) : ℂ := ∫ k, φ k * starRingEnd ℂ (sigmaSectionActOn F E D σ φ k) ∂νK theorem sigmaAdelicAct_one : sigmaAdelicAct F E D 1 = MonoidHom.id _ := by ext g i j show ((D.act 1 : RingAut _).toRingHom : AdeleRing (𝓞 E) E → _) (g.val i j) = g.val i j rw [D.act.map_one] rfl theorem sigmaAdelicAct_mul (σ τ : E ≃ₐ[F] E) : sigmaAdelicAct F E D (σ * τ) = (sigmaAdelicAct F E D σ).comp (sigmaAdelicAct F E D τ) := by ext g i j show ((D.act (σ * τ) : RingAut _).toRingHom : AdeleRing (𝓞 E) E → _) (g.val i j) = ((D.act σ : RingAut _).toRingHom : _ → _) (((D.act τ : RingAut _).toRingHom : _ → _) (g.val i j)) rw [D.act.map_mul] rfl theorem continuous_sigmaAdelicAct (σ : E ≃ₐ[F] E) : Continuous (sigmaAdelicAct F E D σ) := by refine Units.continuous_iff.mpr ⟨?_, ?_⟩ · exact Continuous.matrix_map (Units.continuous_val) (D.continuous_act σ) · exact Continuous.matrix_map (Units.continuous_coe_inv) (D.continuous_act σ) theorem sigmaAdelicAct_globalPoints (σ : E ≃ₐ[F] E) (g : Matrix.GeneralLinearGroup (Fin 2) E) : sigmaAdelicAct F E D σ (Matrix.GeneralLinearGroup.map (algebraMap E (AdeleRing (𝓞 E) E)) g) = Matrix.GeneralLinearGroup.map (algebraMap E (AdeleRing (𝓞 E) E)) (Matrix.GeneralLinearGroup.map (σ : E →+* E) g) := by ext i j exact D.compat σ (g.val i j) theorem sigmaSectionActOn_one (φ : Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E) → ℂ) : sigmaSectionActOn F E D 1 φ = φ := by ext g show φ (sigmaAdelicAct F E D 1 g) = φ g rw [sigmaAdelicAct_one] rfl theorem sigmaPairingOn_one [MeasurableSpace (Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E))] (νK : MeasureTheory.Measure (Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E))) (φ : Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E) → ℂ) : sigmaPairingOn F E D νK 1 φ = ∫ k, φ k * starRingEnd ℂ (φ k) ∂νK := by unfold sigmaPairingOn rw [sigmaSectionActOn_one] theorem sigmaPairingOn_zero [MeasurableSpace (Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E))] (νK : MeasureTheory.Measure (Matrix.GeneralLinearGroup (Fin 2) (AdeleRing (𝓞 E) E))) (σ : E ≃ₐ[F] E) : sigmaPairingOn F E D νK σ 0 = 0 := by unfold sigmaPairingOn simp only [Pi.zero_apply, zero_mul, MeasureTheory.integral_zero] section Inhabitant example : haveI : Subsingleton (ℚ ≃ₐ[ℚ] ℚ) := ⟨fun a b => AlgEquiv.ext fun x => (a.commutes x).trans (b.commutes x).symm⟩ sigmaAdelicAct ℚ ℚ (M4aHerbrand.identityDescent (𝓞 ℚ) ℚ ℚ) 1 = MonoidHom.id _ := sigmaAdelicAct_one ℚ ℚ _ end Inhabitant end AutomorphicForm
Statements phrased using this module (120)
- Haar measure on GL₂(A_E) is σ-invariant
AutomorphicForm.measurePreserving_sigmaAdelicAct0 below · depth 18 - Comparison of twisted elliptic–central and kernel folds
AutomorphicForm.exists_twistedEllipticCentralFold_eq_mul_sum_kernelCentralEllipticFold901 below · depth 21 - Spectral comparison of cut traces in prime-degree Galois extensions
AutomorphicForm.fibreSum_twistedCutTrace_eq_const_mul_fibreSum_cutTrace_of_centralElliptic_of_prime3,001 below · depth 21 - Twisted elliptic-central fold equals base-changed central-elliptic kernel
AutomorphicForm.exists_twistedEllipticCentralFold_eq_mul_sum_kernelCentralEllipticFold_of_areMatchingOn_of_isNormClass896 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 - 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 - Base change for GL₂: elliptic–central class sums compared
AutomorphicForm.exists_finsum_sigmaCentralizerDomain_eq_mul_sum_finsum_centralizerDomain_of_areMatchingOn_of_isNormClass867 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 - Galois invariance of the idelic norm of det on GL₂(A_E)
AutomorphicForm.ideleNorm_det_sigmaAdelicAct0 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 - Galois action permutes local factors and Hecke generators
AutomorphicForm.sigmaAdelicAct_localEmbed_range_and_heckeGen_of_asIdeal_eq_smul0 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 - Hecke generator inverse double-coset relation at level U₁(N)
NumberField.AdelicLevel.exists_heckeGen_inv_eq_centralScalar_mul_mul_heckeGen_mul_levelOne1 below · depth 23 - Double-coset inversion relation for Hecke generators at principal level
NumberField.AdelicLevel.exists_heckeGen_inv_eq_centralScalar_mul_mul_heckeGen_mul_principalLevel1 below · depth 23 - Hecke words and slot-family combinations are matching at S_K∪ T
AutomorphicForm.areMatchingAt_union_heckeWord_sum_slotFamilyCoeff_mul_of_areMatchingAt78 below · depth 24 - Twisted geometric remainder minus [L:K]λ times slot sum: cylinder-small functional
AutomorphicForm.exists_continuous_noAtomicMass_twistedGeometricRemainder_sub_finrank_mul_const_mul_sum_eq1,677 below · depth 24 - Finiteness of twisted elliptic and central classes meeting a compact support
AutomorphicForm.finite_sep_exists_twistedKernelSummand_ne_zero_of_hasCompactSupport11 below · depth 24 - Central-norm twisted terms versus central terms, prime degree
AutomorphicForm.finsum_sigmaCentralizerDomain_centralNorm_eq_mul_sum_finsum_centralizerDomain_central_of_central_transfer310 below · depth 24 - Cyclic base change: elliptic-norm twisted terms versus elliptic terms
AutomorphicForm.finsum_sigmaCentralizerDomain_ellipticNorm_eq_mul_sum_finsum_centralizerDomain_elliptic_of_areMatchingOn_of_eq_zero285 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 - 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 - Comparison of parabolic intercepts along Hecke words, uniform λ
AutomorphicForm.exists_continuous_noAtomicMass_intercept_parabolic_sub_finrank_mul_const_mul_sum_intercept_parabolic_eq_uniform1,673 below · depth 25 - 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 - Coarse geometric expansion of the truncated GL₂ kernel integral
AutomorphicForm.exists_forall_le_setIntegral_lambdaT_adelicKernel_sub_centralElliptic_eq_setIntegral_parabolic94 below · depth 25 - Coarse geometric expansion of the truncated twisted GL₂ kernel
AutomorphicForm.exists_forall_le_setIntegral_lambdaT_twistedAdelicKernel_sub_centralElliptic_eq_setIntegral_parabolic157 below · depth 25 - Elliptic twisted terms assemble into the base-change elliptic sum
AutomorphicForm.finsum_sigmaCentralizerDomain_ellipticNorm_eq_mul_sum_finsum_centralizerDomain_elliptic_of_forall_perClass163 below · depth 25 - Finiteness of the σ-twisted scalar-class kernel integral
AutomorphicForm.lintegral_lintegral_tsum_enorm_twistedKernel_identityFamily_lt_top85 below · depth 25 - Twisted elliptic transfer identity for one norm class
AutomorphicForm.setIntegral_mul_setIntegral_sigmaCentralizerDomain_eq_mul_sum_setIntegral_range_idelicNorm_of_normClassMap_eq_of_areMatchingOn269 below · depth 25 - Central-norm twisted term in prime-degree cyclic base change
AutomorphicForm.setIntegral_sigmaCentralizerDomain_eq_mul_apply_centralScalar_of_normClassMap_eq_mk_scalar_of_central_transfer117 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 - 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 - Galois action preserves archimedean height and finite integrality
AutomorphicForm.archHeight_glArch_sigmaAdelicAct_and_glFin_sigmaAdelicAct_mem_finiteIntegralGL20 below · depth 26 - Truncated hyperbolic terms compared with a uniform slope λ
AutomorphicForm.exists_continuous_noAtomicMass_integrableOn_and_hyperbolicTerm_sub_finrank_mul_const_mul_sum_eq_of_areMatchingAt_uniform1,509 below · depth 26 - Matched unipotent terms: affine in R with atom-free remainder
AutomorphicForm.exists_continuous_noAtomicMass_integrableOn_and_unipotentTerm_sub_const_mul_sum_eq_of_areMatchingAt362 below · depth 26 - Truncated parabolic term splits into hyperbolic and unipotent cells
AutomorphicForm.exists_forall_le_integrableOn_and_setIntegral_parabolic_eq_hyperbolicCell_add_unipotentCell94 below · depth 26 - Hyperbolic–unipotent splitting of the truncated twisted parabolic term
AutomorphicForm.exists_forall_le_integrableOn_and_setIntegral_twistedParabolic_eq_hyperbolicCell_add_unipotentCell166 below · depth 26 - Integrability of the ξ-folded truncated twisted GL₂ kernel
AutomorphicForm.exists_forall_le_integrableOn_mul_lambdaT_twistedAdelicKernel_canonicalTruncationDomain_prod86 below · depth 26 - Integrability of the centre-folded truncated GL₂ adelic kernel
AutomorphicForm.exists_forall_le_integrableOn_setIntegral_mul_lambdaT_adelicKernel_of_isTruncationDatum82 below · depth 26 - Transfer data at a twisted class with elliptic norm
AutomorphicForm.exists_haar_sigmaCentralizer_centralizer_covolume_and_twistedOrbital_eq_of_normClassMap_eq_of_areMatchingOn32 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 - Asymptotically affine truncated parabolic term, unit-factorizable f
AutomorphicForm.exists_tendsto_setIntegral_lambdaT_adelicKernel_sub_centralElliptic_sub_affine_atTop_of_isUnitFactorization399 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 - Twisted slab identity: covolume times twisted orbital integral
AutomorphicForm.setIntegral_fundamentalDomain_slab_sigmaAdelicAct_eq_measureReal_mul_integral_map_of_isTwistedSectionFnOn18 below · depth 26 - Quadratic base change: unfolded twisted term at a non-scalar class
AutomorphicForm.setIntegral_sigmaCentralizerDomain_eq_mul_apply_centralScalar_of_normClassMap_eq_mk_scalar_of_forall_ne_scalar_of_finrank_eq_two62 below · depth 26 - Affine shape of base-changed unipotent terms along Hecke words
AutomorphicForm.exists_clm_noAtomicMass_forall_sum_slotFamilyCoeff_mul_setIntegral_unipotentCell_eq_mul_add277 below · depth 27 - A uniform transfer constant in the hyperbolic-term base-change comparison
AutomorphicForm.exists_const_forall_exists_windingDatum_integrableOn_and_hyperbolicTerm_sub_finrank_mul_const_mul_sum_eq_mul_sum_coeff_add_sum_coeff_of_areMatchingAt1,495 below · depth 27 - Hilbert's Theorem 90 for GL₂ over adeles
AutomorphicForm.exists_eq_inv_mul_sigmaAdelicAct_of_prod_sigmaAdelicAct_pow_eq_one4 below · depth 27 - Integrability of the truncated hyperbolic and unipotent kernels
AutomorphicForm.exists_forall_le_integrableOn_hyperbolicCell_and_unipotentCell_sub_indicator_constantTerm91 below · depth 27 - Integrability of the truncated twisted hyperbolic and unipotent kernels
AutomorphicForm.exists_forall_le_integrableOn_twistedHyperbolicCell_and_twistedUnipotentCell_sub_indicator_constantTerm162 below · depth 27 - Pointwise cell decomposition of the truncated GL₂ adelic kernel
AutomorphicForm.exists_forall_le_lambdaT_adelicKernel_eq_centralElliptic_add_unipotentCell_add_hyperbolicCell4 below · depth 27 - Uniform bound for the truncated twisted GL₂ kernel on Siegel translates
AutomorphicForm.exists_forall_norm_lambdaT_twistedAdelicKernel_centralScalar_mul_le_of_subset_centreCutSiegelSet_translates70 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 - Affine asymptotics of the truncated hyperbolic term, unit factorisation
AutomorphicForm.exists_tendsto_setIntegral_hyperbolicCell_sub_affine_atTop_of_isUnitFactorization224 below · depth 27 - Affine asymptotics of the truncated unipotent term, unit-factorizable f
AutomorphicForm.exists_tendsto_setIntegral_unipotentCell_sub_affine_atTop_of_isUnitFactorization263 below · depth 27 - Unimodularity of the σ-twisted centraliser modulo the centre
AutomorphicForm.isMulRightInvariant_of_isHaarMeasure_eqLocus_sigmaAdelicAct_center6 below · depth 27 - A uniform transfer constant in the twisted hyperbolic comparison
AutomorphicForm.exists_const_forall_exists_windingDatum_sub_finrank_mul_const_mul_sum_eq_sum_mul_coeff_of_hyperbolicTerm_eq_affine1,489 below · depth 28 - Integrability of the truncated σ-twisted unipotent term
AutomorphicForm.exists_forall_le_integrableOn_setIntegral_mul_finsum_unipotentNormClass_sub_indicator_constantTerm_canonicalTruncationDomain158 below · depth 28 - Truncated unipotent contributions along a slot family over K
AutomorphicForm.exists_forall_mem_slotIndex_integrableOn_and_setIntegral_unipotentCell_eq_weighted_moments_self258 below · depth 28 - Bounded truncated twisted GL₂ kernel on Siegel translates
AutomorphicForm.exists_forall_norm_finsum_sub_indicator_highSet_constantTerm_finsum_borel_le_of_subset_centreCutSiegelSet_translates70 below · depth 28 - Cuspidal decay of the twisted Borel kernel minus its constant term
AutomorphicForm.exists_forall_norm_twistedBorelKernel_sub_constantTerm_centralScalar_mul_le_inv_adelicHeight_pow59 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 - 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 - Twisted hyperbolic cell at σ=1 equals untwisted cell
AutomorphicForm.setIntegral_twistedHyperbolicCell_self_one_eq_setIntegral_hyperbolicCell0 below · depth 28 - Trivial twist: σ=1 unipotent cell is untwisted
AutomorphicForm.setIntegral_twistedUnipotentCell_self_one_eq_setIntegral_unipotentCell0 below · depth 28 - Vanishing of the unipotent fold against a character ramified on T
AutomorphicForm.setIntegral_unipotentCell_fold_eq_zero_of_exists_localUnit_apply_ne_one4 below · depth 28 - Central local unit invariance of Hecke-word test functions
AutomorphicForm.apply_mul_centralScalar_localUnit_eq_of_glArch_mul_glFin_heckeWord_of_not_mem0 below · depth 29 - Central local-unit invariance of a semi-locally factorised test function
AutomorphicForm.apply_mul_centralScalar_localUnit_eq_of_isSemiLocalFactorization_heckeWord_of_under_not_mem0 below · depth 29 - A uniform transfer constant for hyperbolic intercepts
AutomorphicForm.exists_const_forall_exists_windingDatum_hyperbolicIntercept_sub_finrank_mul_const_mul_sum_eq_sum_satakeLaurent_mul_coeff_of_eq_affine1,456 below · depth 29 - Slope transfer for the twisted hyperbolic term
AutomorphicForm.exists_forall_hyperbolicSlope_eq_mul_sum_slotFamilyCoeff_mul_hyperbolicSlope_of_eq_affine1,015 below · depth 29 - Rapid cuspidal decay of twisted GL₂ kernel minus constant term
AutomorphicForm.exists_forall_norm_finsum_borel_div_mem_sub_constantTerm_centralScalar_mul_le_inv_adelicHeight_pow59 below · depth 29 - Haar measure on the adelic diagonal torus via diag(p₁p₂,p₁)
AutomorphicForm.exists_pos_forall_integral_subgroup_eq_mul_integral_prod_centralScalar_mul_diagUnits2_one2 below · depth 29 - One winding datum for all K-side Hecke words
AutomorphicForm.exists_windingDatum_forall_heckeWord_mul_sum_slotFamilyCoeff_mul_sum_classIntegral_eq_sum_satakeLaurent_mul_coeff116 below · depth 29 - Haar measure on centralisers of regular diagonal elements
AutomorphicForm.forall_exists_isHaarMeasure_centralizer_globalPoints_integral_eq_mul_integral_prod_diagUnits21 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 - Vanishing of the central and elliptic fold against a character
AutomorphicForm.setIntegral_centralEllipticPart_fold_eq_zero_of_forall_apply_mul_centralScalar_eq_of_ne_one1 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 - Vanishing of the hyperbolic ξ-fold for a ramified central character
AutomorphicForm.setIntegral_hyperbolicCell_fold_eq_zero_of_forall_apply_mul_centralScalar_eq_of_ne_one2 below · depth 29 - Vanishing of the twisted hyperbolic ξ_L-fold over a fundamental domain
AutomorphicForm.setIntegral_twistedHyperbolicCell_fold_eq_zero_of_forall_apply_mul_sigmaAdelicAct_centralScalar_eq_of_ne_one2 below · depth 29 - Vanishing of the ξ-twisted unipotent fold under central invariance
AutomorphicForm.setIntegral_unipotentCell_fold_eq_zero_of_forall_apply_mul_centralScalar_eq_of_ne_one2 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 - 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 - Uniform transfer constant for twisted hyperbolic intercepts
AutomorphicForm.exists_const_forall_exists_windingDatum_hyperbolicIntercept_sub_finrank_mul_const_mul_sum_eq_sum_satakeLaurent_mul_coeff_of_eq_affine_of_areMatchingArch_of_areMatchingLocal1,445 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 - 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 - 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 - 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 - 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 - Rapid decay of the ξ-averaged twisted kernel minus its constant term
AutomorphicForm.exists_forall_norm_setIntegral_mul_finsum_borel_div_mem_sub_constantTerm_centralScalar_mul_le_inv_adelicHeight_pow70 below · depth 31 - One winding datum for all Hecke words (window side)
AutomorphicForm.exists_windingDatum_forall_heckeWord_mul_sum_slotFamilyCoeff_mul_sum_windowClassIntegral_eq_sum_satakeLaurent_mul_coeff302 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 - Semi-local evaluation intertwines the idèlic Galois action with σ⊗ 1
AutomorphicForm.semiLocalEval_act_eq_congr_and_semiLocalIdele_unitsAct_and_semiLocalComponent_sigmaAdelicAct1 below · depth 31 - Centre unfolding of the truncated hyperbolic term over K
AutomorphicForm.setIntegral_canonicalTruncationDomain_adelicKernelHyperbolicPart_sub_indicator_constantTerm_eq_mul_sum_mul_integral_add_sum_of_eq_mul_sum_orbital_add_sum_weightedOrbital56 below · depth 31 - σ-action preserves the adelic maximal compact and its Haar measure
AutomorphicForm.sigmaAdelicAct_mem_adelicMaximalCompact_and_integral_maximalCompactHaar_comp_sigmaAdelicAct4 below · depth 31 - Galois invariance of the adelic height on GL₂
AutomorphicForm.adelicHeight_sigmaAdelicAct6 below · depth 32 - Uniqueness of the central–elliptic comparison constant
AutomorphicForm.eq_of_forall_setIntegral_centralElliptic_eq_mul_sum_of_exists_areMatchingAt_sum_ne_zero0 below · depth 32 - Central fold of a twisted GL₂ kernel: convergence and Fubini
AutomorphicForm.integrableOn_and_measurable_and_constantTerm_setIntegral_mul_finsum_borel_div_mem_eq_setIntegral_mul_integral_finsum_inv_unipotentGL2_mul3 below · depth 32 - Unipotent translation invariance of box averages of twisted GL₂ sums
AutomorphicForm.integrable_and_integral_finsum_borel_div_mem_inv_unipotentGL2_mul_eq_integral_finsum_of_norm_ne_one4 below · depth 32 - Centre unfolding of hyperbolic orbital integrals over K
AutomorphicForm.integral_haarQuotient_orbital_eq_const_mul_integral_of_isOrbitalIntegralOn_centralScalar_mul55 below · depth 32 - Central–elliptic comparison for cyclic base change, constant displayed
AutomorphicForm.setIntegral_twistedEllipticCentralFold_eq_const_mul_sum_of_factorization_of_normFibre907 below · depth 32 - Unfolding a central-translate orbital integral over H_Kbackslash GL₂(mathbb A_K)
AutomorphicForm.const_mul_eq_integral_haarQuotient_centralScalar_of_isOrbitalIntegralOn_of_diagonal52 below · depth 33 - Fubini over the centre for a regular diagonal class
AutomorphicForm.integral_haarQuotient_integral_character_mul_orbital_eq_integral_character_mul_integral_haarQuotient_centralScalar51 below · depth 33 - Semi-local component above v of a twisted unipotent product
AutomorphicForm.semiLocalComponent_glFin_inv_mul_unipotentGL2_mul_diagOne_mul_centralScalar_mul_sigmaAdelicAct2 below · depth 33 - Covolume of the principal norm-one ideles in a cyclic extension
NumberField.measure_fundamentalDomain_range_div_eq_mul_finrank_mul_div_of_ker_idelicNorm27 below · depth 33 - Transport of a fundamental domain along idelic Hilbert 90
NumberField.ae_exists_mk_mul_out_mem_and_measure_inter_eq_zero_preimage_unitsAct_mul_inv_of_isFundamentalDomain_subgroupOf3 below · depth 34 - Covolume of L^×/K^× in A_L^×/A_K^×
NumberField.haarQuotient_measure_eq_ofReal_finrank_mul_div_of_ae_exists_mk_mul_out_mem_of_measure_inter_eq_zero23 below · depth 34