Definitions/Def_LanglandsTunnell_CubicInduction_ArchCentre3.lean
Casimir operators and centre-finiteness for adelic GL₃ forms
Fix the group G = AdelicGL 3 (𝓞 ℚ) ℚ = \mathrm{GL}_3 of the adele ring of \mathbb{Q}, and consider complex-valued functions \varphi on it. The first definition, archDeriv i j φ, takes indices i,j \in \{0,1,2\} and produces the function sending g to the derivative at s = 0 of the real-variable function s \mapsto \varphi\bigl(g \cdot \mathrm{archRealLift3}(\delta + s E_{ij})\bigr), where \delta + sE_{ij} is the real 3\times 3 matrix whose (a,b) entry is 1 if a=b plus s if (a,b) = (i,j), and archRealLift3 places a real matrix at the archimedean component of the adeles with identity finite part, returning the corresponding element of \mathrm{GL}_3(\mathbb{A}) when that adelic matrix is a unit and 1 otherwise. Thus archDeriv i j is right differentiation along the elementary matrix E_{ij} at the infinite place.
Three operators are then built from these directional derivatives: casimir1 φ = ∑_i archDeriv i i φ, casimir2 φ = ∑_{i,j} archDeriv i j (archDeriv j i φ) and casimir3 φ = ∑_{i,j,k} archDeriv i j (archDeriv j k (archDeriv k i φ)), the images of the symmetric expressions \sum_i E_{ii}, \sum_{i,j} E_{ij}E_{ji} and \sum_{i,j,k} E_{ij}E_{jk}E_{ki} in the universal enveloping algebra of \mathfrak{gl}_3.
Finally, IsCentreFinite φ is the conjunction, for each of the three operators T \in \{casimir1, casimir2, casimir3\}, of the assertion that there exist N \in \mathbb{N} and coefficients a : \mathrm{Fin}(N+1) \to \mathbb{C} with a_N = 1 such that \sum_{m} a_m \cdot T^{m}(\varphi) = 0 as a function on G, the iterates being ordinary function iteration. So centre-finiteness is formulated as a monic polynomial relation, separately in each of the three chosen operators, rather than as finiteness of the module generated by the whole centre.
Relation to Mathlib
Mathlib has no notion of automorphic forms on adelic \mathrm{GL}_n or of Casimir operators acting on them; these definitions are the project's own, built from Mathlib's deriv and adele-ring constructions.
Where it is used
These are the archimedean conditions in the project's vocabulary for automorphic forms on \mathrm{GL}_3 over \mathbb{Q}, used in the treatment of cubic induction underlying the Langlands–Tunnell input, which supplies modularity of the mod-3 representation attached to a Frey curve.
References
- R. P. Langlands, Base Change for GL(2), Annals of Mathematics Studies 96, Princeton University Press, 1980
- J. Tunnell, Artin's conjecture for representations of octahedral type, Bulletin of the American Mathematical Society (N.S.) 5 (1981), 173–175
- A. Borel and H. Jacquet, Automorphic forms and automorphic representations, in: Automorphic Forms, Representations and L-functions, Proceedings of Symposia in Pure Mathematics 33, American Mathematical Society, 1979, 189–207
References are suggested automatically and have not been individually verified.
English text generated automatically from the Lean source; the Lean statement is authoritative.
- 30 lines
- 5 declarations
- used in the statements of 210 theorems and imported by 212 proofs
- imports 1 definition modules
Source file: Definitions/Def_LanglandsTunnell_CubicInduction_ArchCentre3.lean
Declarations
- def
LanglandsTunnell.CubicInduction.WhittakerBlock.archDeriv - def
LanglandsTunnell.CubicInduction.WhittakerBlock.casimir1 - def
LanglandsTunnell.CubicInduction.WhittakerBlock.casimir2 - def
LanglandsTunnell.CubicInduction.WhittakerBlock.casimir3 - def
LanglandsTunnell.CubicInduction.WhittakerBlock.IsCentreFinite
Source
import Definitions.Def_LanglandsTunnell_CubicInduction_ArchSmooth3 set_option autoImplicit false noncomputable section open IsDedekindDomain NumberField AutomorphicForm namespace LanglandsTunnell.CubicInduction.WhittakerBlock def archDeriv (i j : Fin 3) (φ : AdelicGL 3 (𝓞 ℚ) ℚ → ℂ) : AdelicGL 3 (𝓞 ℚ) ℚ → ℂ := fun g => deriv (fun s : ℝ => φ (g * WhittakerBlock.archRealLift3 fun a b => (if a = b then (1 : ℝ) else 0) + if a = i ∧ b = j then s else 0)) 0 def casimir1 (φ : AdelicGL 3 (𝓞 ℚ) ℚ → ℂ) : AdelicGL 3 (𝓞 ℚ) ℚ → ℂ := fun g => ∑ i : Fin 3, archDeriv i i φ g def casimir2 (φ : AdelicGL 3 (𝓞 ℚ) ℚ → ℂ) : AdelicGL 3 (𝓞 ℚ) ℚ → ℂ := fun g => ∑ i : Fin 3, ∑ j : Fin 3, archDeriv i j (archDeriv j i φ) g def casimir3 (φ : AdelicGL 3 (𝓞 ℚ) ℚ → ℂ) : AdelicGL 3 (𝓞 ℚ) ℚ → ℂ := fun g => ∑ i : Fin 3, ∑ j : Fin 3, ∑ k : Fin 3, archDeriv i j (archDeriv j k (archDeriv k i φ)) g def IsCentreFinite (φ : AdelicGL 3 (𝓞 ℚ) ℚ → ℂ) : Prop := (∃ (N : ℕ) (a : Fin (N + 1) → ℂ), a (Fin.last N) = 1 ∧ ∑ m, a m • (casimir1^[m] φ) = 0) ∧ (∃ (N : ℕ) (a : Fin (N + 1) → ℂ), a (Fin.last N) = 1 ∧ ∑ m, a m • (casimir2^[m] φ) = 0) ∧ ∃ (N : ℕ) (a : Fin (N + 1) → ℂ), a (Fin.last N) = 1 ∧ ∑ m, a m • (casimir3^[m] φ) = 0 end LanglandsTunnell.CubicInduction.WhittakerBlock
Statements phrased using this module (210)
- Archimedean holomorphy and non-vanishing from a torus Γ-factor identity
LanglandsTunnell.RankinSelberg.differentiableOn_and_rsArchIntegral_ne_zero_of_torusPair_eq_gammaFactor5 below · depth 18 - Archimedean GL₂× GL₃ torus-pair Gamma identity, minimal type
LanglandsTunnell.RankinSelberg.exists_mem_polyGauss3_jacquetVector3_torusPair_eq_gammaFactor_of_archWhittakerDatum_of_isCasimirEigen_of_minimalType281 below · depth 19 - 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 - Unfolding the archimedean torus pairing of the GL₃ Jacquet vector
LanglandsTunnell.RankinSelberg.exists_forall_torusPair_jacquetVector3_eq_integral_quasiChar_mul_torusIntegral_mul_godementMellin6 below · depth 20 - Unfolded archimedean GL₂× GL₃ torus-pair identity at minimal type
LanglandsTunnell.RankinSelberg.exists_mem_polyGauss3_jacquetVector3_unfoldedTorusPair_eq_gammaFactor_of_archWhittakerDatum_of_isCasimirEigen_of_minimalType280 below · depth 20 - Jacquet vector at a real diagonal torus element, unfolded
LanglandsTunnell.CubicInduction.jacquetVector3_iota_upperUnit_eq_integral_godementInner3_mulShift0 below · depth 21 - Integrability of the unfolded archimedean torus-pair integrand
LanglandsTunnell.RankinSelberg.exists_forall_integrable_unfoldedTorusPairIntegrand_jacquetVector34 below · depth 21 - Unfolded archimedean torus pair and its dual Γ-factors
LanglandsTunnell.RankinSelberg.exists_mem_polyGauss3_iotaWeight_archZeta30_ne_zero_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_archWhittakerDatum_of_isCasimirEigen272 below · depth 21 - Non-vanishing far right of a reference Rankin–Selberg integral
LanglandsTunnell.RankinSelberg.exists_pureTranslates_combination_forall_rsGlobalIntegral_ne_zero_member_twisted_of_finiteFamily_arch_of_archNonvanishing463 below · depth 21 - Iwasawa bound for W_D(diag(at,1)e⁻¹)
LanglandsTunnell.Converse.ArchDatumR.norm_W_diagOne_mul_inv_le_of_iwasawa0 below · depth 22 - Non-vanishing archimedean zeta of a block-harmonic Jacquet vector
LanglandsTunnell.CubicInduction.exists_isAdmissibleTwist_archZeta30_jacquetVector3_ne_zero_of_blockHarmonicOne_colHarmonic_gaussian3_of_weightZero38 below · depth 22 - Non-vanishing archimedean zeta for the conjugate block-harmonic section
LanglandsTunnell.CubicInduction.exists_isAdmissibleTwist_archZeta30_jacquetVector3_ne_zero_of_conjBlockHarmonicOne_colHarmonic_gaussian357 below · depth 22 - Non-vanishing of the weight-zero minor-section archimedean zeta integral
LanglandsTunnell.CubicInduction.exists_isAdmissibleTwist_archZeta30_jacquetVector3_ne_zero_of_minorSection_gaussian337 below · depth 22 - Continuity and decay of the Godement inner integral
LanglandsTunnell.CubicInduction.godementInner3_mulShift_polyGauss3_continuousOn_and_decay0 below · depth 22 - Weight law for the Jacquet vector of a Gaussian section
LanglandsTunnell.CubicInduction.jacquetVector3_mul_iota_eq_archWeightChar_inv_mul_of_colHarmonic_gaussian30 below · depth 22 - Equivariance of the Jacquet vector under ι of row isometries
LanglandsTunnell.CubicInduction.jacquetVector3_mul_iota_eq_archWeightChar_inv_mul_of_conjBlockHarmonic_colHarmonic_gaussian30 below · depth 22 - Weight-one K-type of the minor-section Jacquet vector
LanglandsTunnell.CubicInduction.jacquetVector3_mul_iota_eq_archWeightOne_inv_mul_of_minorSection_gaussian30 below · depth 22 - Integrability of a real Whittaker torus profile against |t|^{s-1/2}t⁻²
LanglandsTunnell.RankinSelberg.exists_forall_integrable_Wr_mul_abs_cpow_mul_inv_sq0 below · depth 22 - Archimedean Rankin–Selberg pair outside weight-one GL₂ parameters
LanglandsTunnell.RankinSelberg.exists_mem_polyGauss3_iotaWeight_archZeta30_ne_zero_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_archWhittakerDatum_of_isCasimirEigen_of_not_weightOne206 below · depth 22 - Factorisation of the purified reference Rankin–Selberg integral
LanglandsTunnell.RankinSelberg.exists_ne_zero_forall_rsGlobalIntegral_reference_eq_mul_rsArchIntegral_mul_rsFinIntegral_indicator_mul_of_finiteFamily_arch410 below · depth 22 - Weight-one unfolded torus-pair identities with Γ-factors
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_weightOne_of_blockHarmonicOne_colHarmonic_gaussian348 below · depth 22 - Weight-one torus-pair identities for the conjugate-block Gaussian section
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_weightOne_of_conjBlockHarmonicOne_colHarmonic_gaussian373 below · depth 22 - Weight-one minor-section torus-pair identities with archimedean Γ-factors
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_weightOne_of_minorSection_gaussian347 below · depth 22 - Weight ≥ 1 real Whittaker profiles: both parity sheets non-vanishing
LanglandsTunnell.Converse.ArchDatumR.exists_W_diagOne_add_mul_W_diagOne_neg_ne_zero_of_one_le_weight32 below · depth 23 - Parity of the torus profile at weight zero
LanglandsTunnell.CubicInduction.archDatumR_W_diagOne_neg_eq_of_weightZero11 below · depth 23 - Weight-one torus profile as Gaussian multiplicative convolution
LanglandsTunnell.CubicInduction.exists_archDatumR_W_diagOne_add_eq_mul_mulConvGaussian_of_weightOne29 below · depth 23 - Discrete-series torus profile of a real archimedean Whittaker datum
LanglandsTunnell.CubicInduction.exists_archDatumR_W_diagOne_eq_mul_exp_and_eq_zero_of_discrete16 below · depth 23 - Weight-zero torus profile is a Gaussian multiplicative convolution
LanglandsTunnell.CubicInduction.exists_archDatumR_W_diagOne_eq_mul_mulConvGaussian_of_weightZero16 below · depth 23 - Non-vanishing archimedean zeta integral for the weight-zero quadratic section
LanglandsTunnell.CubicInduction.exists_isAdmissibleTwist_archZeta30_jacquetVector3_ne_zero_of_detPow_blockQuadratic_colHarmonicTwo_gaussian3_of_weightZero38 below · depth 23 - An admissible twist with non-vanishing archimedean GL₃ zeta integral
LanglandsTunnell.CubicInduction.exists_isAdmissibleTwist_archZeta30_jacquetVector3_ne_zero_of_detPow_colHarmonic_gaussian362 below · depth 23 - Weight zero of the block-quadratic Gaussian Jacquet vector
LanglandsTunnell.CubicInduction.jacquetVector3_mul_iota_eq_archWeightChar_inv_mul_of_detPow_blockQuadratic_gaussian30 below · depth 23 - Explicit dual archimedean torus pair: root number times π(-1)ᶜρ times Γ-factor
LanglandsTunnell.RankinSelberg.exists_dualTorusPair_eq_archRootNumber_mul_explicit_mul_gammaFactor_of_weightOne_of_blockHarmonicOne_colHarmonic_gaussian3_of_profile36 below · depth 23 - Folded dual torus pair on the discrete branch, explicit constant
LanglandsTunnell.RankinSelberg.exists_dualTorusPair_eq_archRootNumber_mul_explicit_mul_gammaFactor_of_weightOne_of_conjBlockHarmonicOne_colHarmonic_gaussian3_of_discrete_profile28 below · depth 23 - Folded dual torus pair: root number, explicit constant, dual Γ-factors
LanglandsTunnell.RankinSelberg.exists_dualTorusPair_eq_archRootNumber_mul_explicit_mul_gammaFactor_of_weightOne_of_conjBlockHarmonicOne_colHarmonic_gaussian3_of_weightOne_profile28 below · depth 23 - Dual minor-section archimedean torus pair equals ε_∞ times Γ-factors
LanglandsTunnell.RankinSelberg.exists_dualTorusPair_eq_archRootNumber_mul_explicit_mul_gammaFactor_of_weightOne_of_minorSection_gaussian3_of_profile37 below · depth 23 - Archimedean GL₃× GL₂ pair identity: discrete-series case
LanglandsTunnell.RankinSelberg.exists_mem_polyGauss3_iotaWeight_archZeta30_ne_zero_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_archWhittakerDatum_of_isCasimirEigen_of_discreteSeries141 below · depth 23 - Even principal parameter: primal and dual unfolded torus-pair identities
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_evenPrincipal_of_detPow_blockQuadratic_colHarmonicTwo_gaussian351 below · depth 23 - Even principal torus-pair identities for a weight-zero Gaussian section
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_evenPrincipal_of_detPow_colHarmonic_gaussian378 below · depth 23 - Explicit unfolded archimedean torus pair, weight one, block-harmonic section
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_eq_explicit_mul_gammaFactor_of_weightOne_of_blockHarmonicOne_colHarmonic_gaussian3_of_profile31 below · depth 23 - Discrete-branch unfolded torus pair equals explicit Gamma-factor product
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_eq_explicit_mul_gammaFactor_of_weightOne_of_conjBlockHarmonicOne_colHarmonic_gaussian3_of_discrete_profile24 below · depth 23 - Weight-one unfolded torus pair as explicit Γ-factor product
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_eq_explicit_mul_gammaFactor_of_weightOne_of_conjBlockHarmonicOne_colHarmonic_gaussian3_of_weightOne_profile25 below · depth 23 - Explicit primal torus pair for the minor-section Jacquet vector
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_eq_explicit_mul_gammaFactor_of_weightOne_of_minorSection_gaussian3_of_profile31 below · depth 23 - Three Casimir scalars on an irreducible cuspidal subspace
LanglandsTunnell.CubicInduction.SlabL2.exists_casimir_eq_smul_of_irreducible_cuspidal43 below · depth 24 - Hecke-matched GL₃ cusp forms non-orthogonal after right translation
LanglandsTunnell.CubicInduction.exists_inner_toL2_translateRight_ne_zero_of_isCosetEigenfunction_of_isCentreFinite311 below · depth 24 - Non-vanishing archimedean zeta of a flat-section Jacquet vector
LanglandsTunnell.CubicInduction.exists_isAdmissibleTwist_archZeta30_jacquetVector3_ne_zero_of_conjBlockHarmonic_pow_colHarmonic_gaussian389 below · depth 24 - Dual torus pair unfolded for the block-harmonic section
LanglandsTunnell.RankinSelberg.dualTorusPair_eq_setIntegral_dualConfig_of_weightOne_of_blockHarmonicOne_colHarmonic_gaussian35 below · depth 24 - Unfolded dual torus pair for the conjugate-harmonic weight-one section
LanglandsTunnell.RankinSelberg.dualTorusPair_eq_setIntegral_dualConfig_of_weightOne_of_conjBlockHarmonicOne_colHarmonic_gaussian35 below · depth 24 - Dual torus pair of the minor-section Jacquet vector, unfolded
LanglandsTunnell.RankinSelberg.dualTorusPair_eq_setIntegral_dualConfig_of_weightOne_of_minorSection_gaussian35 below · depth 24 - Dual torus pair with explicit constant 2π(-1)ᵇρ
LanglandsTunnell.RankinSelberg.exists_dualTorusPair_eq_archRootNumber_mul_explicit_mul_gammaFactor_of_evenPrincipal_of_detPow_blockQuadratic_colHarmonicTwo_gaussian3_of_profile37 below · depth 24 - Dual torus pair identity, discrete Levi branch
LanglandsTunnell.RankinSelberg.exists_dualTorusPair_eq_archRootNumber_mul_explicit_mul_gammaFactor_of_evenPrincipal_of_detPow_colHarmonic_gaussian3_of_discrete_profile25 below · depth 24 - Dual archimedean torus pair, weight-one Levi branch
LanglandsTunnell.RankinSelberg.exists_dualTorusPair_eq_archRootNumber_mul_explicit_mul_gammaFactor_of_evenPrincipal_of_detPow_colHarmonic_gaussian3_of_weightOne_profile25 below · depth 24 - Dual torus pair, even principal type, weight-zero Levi branch
LanglandsTunnell.RankinSelberg.exists_dualTorusPair_eq_archRootNumber_mul_explicit_mul_gammaFactor_of_evenPrincipal_of_detPow_colHarmonic_gaussian3_of_weightZero_profile36 below · depth 24 - Unfolded torus pair in Iwasawa coordinates, block-harmonic Gaussian section
LanglandsTunnell.RankinSelberg.exists_forall_unfoldedTorusPair_eq_setIntegral_iwasawa_tateM_of_blockHarmonic_colHarmonic_gaussian34 below · depth 24 - Iwasawa–Tate evaluation of an unfolded archimedean torus integral
LanglandsTunnell.RankinSelberg.exists_forall_unfoldedTorusPair_eq_setIntegral_iwasawa_tateM_of_conjBlockHarmonic_colHarmonic_gaussian34 below · depth 24 - Iwasawa and Tate–Mellin form of the minor-section torus pair
LanglandsTunnell.RankinSelberg.exists_forall_unfoldedTorusPair_eq_setIntegral_iwasawa_tateM_of_minorSection_gaussian34 below · depth 24 - Archimedean GL₃× GL₂ torus-pair identity: discrete series, flat section
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian391 below · depth 24 - Unfolded torus pair equals 2π(-1)ᵇρ times Gamma factors
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_eq_explicit_mul_gammaFactor_of_evenPrincipal_of_detPow_blockQuadratic_colHarmonicTwo_gaussian3_of_profile32 below · depth 24 - Unfolded torus pair equals (-1)ᵇ(π/2)ρ times Γ-product
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_eq_explicit_mul_gammaFactor_of_evenPrincipal_of_detPow_colHarmonic_gaussian3_of_discrete_profile19 below · depth 24 - Explicit unfolded torus pair: (-1)ᵇ(π/2)ρ times the twisted Γ-product
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_eq_explicit_mul_gammaFactor_of_evenPrincipal_of_detPow_colHarmonic_gaussian3_of_weightOne_profile18 below · depth 24 - Unfolded archimedean torus pair in the weight-zero Levi branch
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_eq_explicit_mul_gammaFactor_of_evenPrincipal_of_detPow_colHarmonic_gaussian3_of_weightZero_profile29 below · depth 24 - Non-vanishing scalar in the weight-one torus profile identity
LanglandsTunnell.Converse.exists_ne_zero_and_W_diagOne_add_eq_mul_mulConvGaussian_of_weightOneLevi33 below · depth 25 - Non-vanishing scalar in the discrete-series Whittaker profile
LanglandsTunnell.Converse.exists_ne_zero_and_W_diagOne_eq_mul_exp_and_eq_zero_of_discreteLevi33 below · depth 25 - Non-vanishing scalar in the weight-zero torus profile
LanglandsTunnell.Converse.exists_ne_zero_and_W_diagOne_eq_mul_mulConvGaussian_of_weightZeroLevi17 below · depth 25 - Casimir eigenvalue equations descend from all smoothings to F
LanglandsTunnell.CubicInduction.SlabL2.casimir_eq_smul_of_forall_isSmoothingKernel_casimir_smoothingOperator_eq_smul5 below · depth 25 - Casimir eigenvalues pass to smoothings of cusp functions in a closed span
LanglandsTunnell.CubicInduction.SlabL2.casimir_smoothingOperator_eq_smul_of_toL2_mem_topologicalClosure_span_casimir_eq_smul27 below · depth 25 - Irreducible cuspidal piece generated by smooth Casimir eigenvectors
LanglandsTunnell.CubicInduction.SlabL2.eq_topologicalClosure_span_casimir_eq_smul_of_irreducible_cuspidal29 below · depth 25 - A joint Casimir eigenfunction in a smoothing-stable cuspidal subspace
LanglandsTunnell.CubicInduction.SlabL2.exists_casimir_eq_smul_smooth_cuspFunction_of_ne_bot_of_stable_smoothingOperator35 below · depth 25 - Admissible twist with non-vanishing archimedean zeta, discrete branch
LanglandsTunnell.CubicInduction.exists_isAdmissibleTwist_archZeta30_jacquetVector3_ne_zero_of_conjBlockHarmonic_pow_colHarmonic_gaussian3_of_discreteLevi39 below · depth 25 - Weight-one Levi branch: non-vanishing archimedean zeta of a Jacquet vector
LanglandsTunnell.CubicInduction.exists_isAdmissibleTwist_archZeta30_jacquetVector3_ne_zero_of_conjBlockHarmonic_pow_colHarmonic_gaussian3_of_weightOneLevi38 below · depth 25 - Non-vanishing archimedean zeta integral, weight-zero Levi branch
LanglandsTunnell.CubicInduction.exists_isAdmissibleTwist_archZeta30_jacquetVector3_ne_zero_of_conjBlockHarmonic_pow_colHarmonic_gaussian3_of_weightZeroLevi54 below · depth 25 - Bounded Whittaker block for a centre-finite cusp form on GL₃
LanglandsTunnell.CubicInduction.exists_sum_translate_ne_zero_and_whittakerBlock_le_of_isCentreFinite310 below · depth 25 - Dual Jacquet vector at a Siegel upper-unit torus point
LanglandsTunnell.CubicInduction.jacquetVector3_longWeyl3_transposeInv3_iota_upperUnit_eq0 below · depth 25 - One-sided Whittaker profile for a discrete-series archimedean parameter
LanglandsTunnell.RankinSelberg.archWhittaker_profile_eq_zero_and_eq_two_mul_cpow_mul_exp_of_discrete2 below · depth 25 - Archimedean Whittaker value at a reflected dual torus point
LanglandsTunnell.RankinSelberg.archWhittaker_w0R_mul_transposeInv_upperUnit_eq_mul_archProfile0 below · depth 25 - Dual torus pair unfolded for a quadratic Schwartz section
LanglandsTunnell.RankinSelberg.dualTorusPair_eq_setIntegral_dualConfig_of_evenPrincipal_of_detPow_blockQuadratic_colHarmonicTwo_gaussian34 below · depth 25 - Dual unfolding of the even-type archimedean torus pair
LanglandsTunnell.RankinSelberg.dualTorusPair_eq_setIntegral_dualConfig_of_evenPrincipal_of_detPow_colHarmonic_gaussian35 below · depth 25 - Unfolded torus pair in Iwasawa coordinates with Tate–Mellin evaluation
LanglandsTunnell.RankinSelberg.exists_forall_unfoldedTorusPair_eq_setIntegral_iwasawa_tateM_of_colHarmonic_gaussian34 below · depth 25 - Iwasawa form of the unfolded torus pair, quadratic-block Gaussian datum
LanglandsTunnell.RankinSelberg.exists_forall_unfoldedTorusPair_eq_setIntegral_iwasawa_tateM_of_detPow_blockQuadratic_colHarmonic_gaussian34 below · depth 25 - Primal and dual torus integrals, discrete Levi branch with one complex place
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_oneComplex_discreteLevi71 below · depth 25 - Torus-pair unfolding equals twisted Γ-factors: one complex place, k_ℂ=0
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_oneComplex_weightOneLevi74 below · depth 25 - Primal and dual torus pairs: three real places, opposite signs
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_threeReal_oppSign74 below · depth 25 - Torus pairs for three real places with equal Levi signs
LanglandsTunnell.RankinSelberg.exists_unfoldedTorusPair_and_dualTorusPair_eq_gammaFactor_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_threeReal_sameSign58 below · depth 25 - Archimedean derivative of a smoothing operator along Eᵢⱼ
LanglandsTunnell.CubicInduction.SlabL2.archDeriv_smoothingOperator1 below · depth 26 - Casimir operators commute with smoothing on GL₃(A_ℚ)
LanglandsTunnell.CubicInduction.SlabL2.casimir_smoothingOperator2 below · depth 26 - Casimir right-differential operators commute with elementary derivatives
LanglandsTunnell.CubicInduction.WhittakerBlock.casimir_archDeriv_and_comm0 below · depth 26 - Casimir operators commute with right translation
LanglandsTunnell.CubicInduction.WhittakerBlock.casimir_translateRight0 below · depth 26 - Right mathfrakgl₃-derivatives at infinity: smoothness, linearity, commutators, translation
LanglandsTunnell.CubicInduction.WhittakerBlock.isArchSmooth3_archDeriv_and_archDeriv_add_smul_comm_translate0 below · depth 26 - Translate combination with non-zero Whittaker coefficient and bounded block
LanglandsTunnell.CubicInduction.exists_sum_translate_whittaker_ne_zero_and_whittakerBlock_empty_le_of_isCentreFinite309 below · depth 26 - Closed form of the dual torus integral, discrete Levi branch
LanglandsTunnell.RankinSelberg.exists_forall_dualTorusPair_eq_closedForm_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_discreteLevi29 below · depth 26 - Closed form of the dual torus pair, weight-one Levi branch
LanglandsTunnell.RankinSelberg.exists_forall_dualTorusPair_eq_closedForm_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_weightOneLevi32 below · depth 26 - Closed form of the dual torus pair: weight-zero Levi branch
LanglandsTunnell.RankinSelberg.exists_forall_dualTorusPair_eq_closedForm_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_weightZeroLevi32 below · depth 26 - Closed form of the unfolded torus pair: discrete Levi branch
LanglandsTunnell.RankinSelberg.exists_forall_unfoldedTorusPair_eq_closedForm_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_discreteLevi_ed224 below · depth 26 - Unfolded torus pair in closed form: discrete series against principal Levi
LanglandsTunnell.RankinSelberg.exists_forall_unfoldedTorusPair_eq_closedForm_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_weightOneLevi_ed227 below · depth 26 - Closed form of the unfolded torus pair: weight-zero Levi branch
LanglandsTunnell.RankinSelberg.exists_forall_unfoldedTorusPair_eq_closedForm_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian3_of_weightZeroLevi_ed227 below · depth 26 - Reproducing identity at the infinite place on GL₃
LanglandsTunnell.CubicInduction.exists_contDiff_hasCompactSupport_eq_integral_archRealLift30 below · depth 27 - Uniform exponent θ₀>1/2 for ray decay of GL₃ Whittaker integrals
LanglandsTunnell.CubicInduction.exists_one_half_lt_forall_rayOrder_whittaker3_of_isCentreFinite_of_isRightInvariant298 below · depth 27 - Whittaker decay on the full diagonal torus from ray bounds
LanglandsTunnell.CubicInduction.norm_whittaker3_sum_translate_diag_le_of_forall_rayOrder20 below · depth 27 - Dual torus pair for a discrete-series profile: Gamma factors times Laplace–Mellin
LanglandsTunnell.RankinSelberg.exists_forall_dualTorusPair_eq_const_mul_setIntegral_W_diagOne_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian328 below · depth 27 - Unfolded torus pair for a discrete-series GL₂ profile
LanglandsTunnell.RankinSelberg.exists_forall_unfoldedTorusPair_eq_const_mul_setIntegral_W_diagOne_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian323 below · depth 27 - Automorphy conditions pass to iterated archimedean derivatives
LanglandsTunnell.CubicInduction.conditions_foldr_archDeriv0 below · depth 28 - Continuity and uniform moderate growth of archimedean derivatives
LanglandsTunnell.CubicInduction.continuous_and_norm_iterate_archDeriv_sum_translate_le_of_isCentreFinite1 below · depth 28 - Derivative words of a right translate on GL₃(A_ℚ)
LanglandsTunnell.CubicInduction.exists_continuous_coeff_foldr_archDeriv_mul_right_eq_sum1 below · depth 28 - Simple-root derivatives of the GL₃ Whittaker coefficient at a diagonal point
LanglandsTunnell.CubicInduction.exists_ne_zero_forall_mul_whittaker3_diag_eq_whittaker3_archDeriv2 below · depth 28 - Uniform ray exponent >1/2 for GL₃ Whittaker derivative words
LanglandsTunnell.CubicInduction.exists_one_half_lt_forall_foldr_archDeriv_rayOrder_whittaker3_of_casimir_relations_of_isRightInvariant290 below · depth 28 - Right translation of archimedean derivative words on GL₃
LanglandsTunnell.CubicInduction.foldr_archDeriv_mul_right_eq_sum0 below · depth 28 - Uniform two-variable torus bound for GL₃ Whittaker coefficients
LanglandsTunnell.CubicInduction.norm_whittaker3_diag_le_of_isCentreFinite_of_forall_rayOrder12 below · depth 28 - Transport of the GL₃ cusp package under g↦(g^{mathsf T})⁻¹
LanglandsTunnell.CubicInduction.rayOrder_transport_transposeInv3_of_isCentreFinite_of_isRightInvariant16 below · depth 28 - Unfolded dual torus pair as 4π i^m times scaled-shape integral
LanglandsTunnell.RankinSelberg.dualTorusPair_eq_const_mul_setIntegral_scaledShape_of_discreteSeries_of_conjBlockHarmonic_colHarmonic_gaussian310 below · depth 28 - Transport of automorphy conditions under g↦^tg⁻¹
LanglandsTunnell.CubicInduction.archPackage_comp_transposeInv3_of_isCentreFinite4 below · depth 29 - Linear central element acts by a scalar
LanglandsTunnell.CubicInduction.exists_casimir1_eq_smul_of_isArchSmooth30 below · depth 29 - Whittaker expansion on GL₃ from two Casimir relations
LanglandsTunnell.CubicInduction.exists_exponents_whittaker3_diag_expansion_of_casimir_relations7 below · depth 29 - Two-variable Whittaker decay on GL₃ from regular-singular systems
LanglandsTunnell.CubicInduction.exists_forall_isCompact_orth3_norm_whittaker3_le_of_systems2 below · depth 29 - Simple-pole bound for torus mean squares of GL₃ Whittaker coefficients
LanglandsTunnell.CubicInduction.exists_lintegral_torus_whittaker3_sq_le_div_sub_one_of_isCuspidalAlong_of_isRightInvariant121 below · depth 29 - Regular-singular diagonal systems for GL₃ Whittaker coefficients
LanglandsTunnell.CubicInduction.exists_words_whittaker3_diag_hasDerivAt_systems_of_casimir_relations_natDegree_le2 below · depth 29 - Vanishing of the logarithm-free coefficient at exponent of real part 1/2
LanglandsTunnell.CubicInduction.expCoeff_eq_zero_of_re_eq_one_half_of_mem_span_archDeriv_translate272 below · depth 29 - Whittaker bound on orthogonal compacta extends to all compacta
LanglandsTunnell.CubicInduction.forall_isCompact_norm_whittaker3_le_of_forall_isCompact_orth30 below · depth 29 - Derivative words of translates stay cuspidal along both parabolics
LanglandsTunnell.CubicInduction.isCuspidalAlong_foldr_archDeriv_sum_translate3 below · depth 29 - Finite-adelic invariance of derivative words of translate combinations
LanglandsTunnell.CubicInduction.isRightInvariant_foldr_archDeriv_sum_translate0 below · depth 29 - Transpose–inverse involution exchanges the two GL₃ Whittaker rays
LanglandsTunnell.CubicInduction.norm_whittaker3_archRealLift3_diag_mul_eq_norm_whittaker3_comp_transposeInv35 below · depth 29 - Uniform moderate-growth bound for the GL₃ Whittaker coefficient on the diagonal
LanglandsTunnell.CubicInduction.norm_whittaker3_archRealLift3_diag_mul_le_of_isCompact1 below · depth 29 - Uniform simple-pole bound for the adelic Epstein pairing on a slab
LanglandsTunnell.CubicInduction.AdelicEpstein.exists_forall_sub_one_mul_lintegral_nnnorm_sq_mul_epsteinPlus_le_of_decay9 below · depth 30 - Transpose-inverse involution negates archimedean derivatives, swapping indices
LanglandsTunnell.CubicInduction.archDeriv_comp_transposeInv3_of_isArchSmooth30 below · depth 30 - Bounded test function on A_ℚ³ positive on a third-row window
LanglandsTunnell.CubicInduction.exists_measurable_bounded_compactArch_integral_pos_on_thirdRow_window1 below · depth 30 - Smoothing submodule carrying the leading Whittaker coefficient at exponent 1/2
LanglandsTunnell.CubicInduction.exists_smoothingSubmodule_leadingCoeff_form_of_expCoeff_re_eq_one_half_centreFinite_mg146 below · depth 30 - Centre-finiteness preserved under the transpose-inverse involution on GL₃
LanglandsTunnell.CubicInduction.isCentreFinite_comp_transposeInv3_of_isArchSmooth32 below · depth 30 - Vanishing leading coefficient, or transition-stable harmonic families
LanglandsTunnell.CubicInduction.leadingCoeff_eq_zero_or_exists_transitionStable_family_ne_bot_of_smoothingSubmodule_re136 below · depth 30 - Cuspidal moderate-growth functions on GL₃ are slab cusp functions
LanglandsTunnell.CubicInduction.mem_cuspFunctions_of_isCuspidalAlong_of_archDeriv_growth109 below · depth 30 - Rapid decay on Siegel sets for GL₃ cusp forms
LanglandsTunnell.CubicInduction.norm_mul_gauge3_pow_le_of_siegel_of_isCuspidalAlong_of_archDeriv_growth107 below · depth 30 - Archimedean derivatives commute with the GL₃ Whittaker integral
LanglandsTunnell.CubicInduction.whittaker3_iterate_archDeriv_eq_iterate_archDeriv_whittaker30 below · depth 30 - Whittaker expansions on GL₃ persist under right smoothing
LanglandsTunnell.CubicInduction.SlabL2.exists_expansion_whittaker3_smoothingOperator99 below · depth 31 - Left O(3)-finite smoothing kernels concentrating at the identity
LanglandsTunnell.CubicInduction.SlabL2.exists_isSmoothingKernel_leftOrthFinite_setIntegral_compl_le99 below · depth 31 - Mass-concentration approximate identity for right smoothing on GL₃(A_ℚ)
LanglandsTunnell.CubicInduction.SlabL2.exists_nhds_one_forall_norm_smoothingOperator_sub_le_of_setIntegral_compl_le0 below · depth 31 - Reverse-cyclic cubic equals C₃+C₁²-3C₂
LanglandsTunnell.CubicInduction.WhittakerBlock.sum_archDeriv_rev_eq_casimir3_add_casimir1_casimir1_sub_three_smul_casimir21 below · depth 31 - Casimir eigenvalues of a ν-equivariant function on GL₃
LanglandsTunnell.CubicInduction.casimir_eq_smul_of_upperTriangular_equivariant9 below · depth 31 - Borel equivariance of the top-logarithmic double Whittaker coefficient
LanglandsTunnell.CubicInduction.doubleSlotCoeff_upperTriangular_equivariant_of_joint_expansion_top3 below · depth 31 - Joint two-variable Whittaker expansion with leading-slice non-triviality
LanglandsTunnell.CubicInduction.exists_exponents_whittaker3_diag_joint_expansion_nontrivial_of_casimir_relations40 below · depth 31 - Unipotent displacement on a Siegel set in GL₃(A_ℚ)
LanglandsTunnell.CubicInduction.exists_forall_norm_sub_radical_mul_le_div_archRoot_of_archDeriv_le_of_siegel12 below · depth 31 - Uniform gauge bound on a Siegel set determinant slab
LanglandsTunnell.CubicInduction.exists_gauge3_le_mul_archRoot_mul_archRoot_sq_of_siegel_of_ideleNorm_det_mem_Icc10 below · depth 31 - Joint Casimir eigenvector with non-vanishing coefficient functional
LanglandsTunnell.CubicInduction.exists_joint_casimir_eigenvector_apply_ne_zero_of_positive_skew_form3 below · depth 31 - Derivative words inherit automorphy, cuspidality and a common level
LanglandsTunnell.CubicInduction.exists_level_forall_foldr_archDeriv_invariant_cuspidal_archSmooth100 below · depth 31 - Induced-picture package from a top-slot double leading Whittaker coefficient
LanglandsTunnell.CubicInduction.exists_submodule_inducedPicture_package_of_doubleSlotCoeff_top27 below · depth 31 - Transition-stable harmonic families from an induced-picture package
LanglandsTunnell.CubicInduction.exists_transitionStable_families_ne_bot_of_inducedPicture_package_top82 below · depth 31 - Adjoints of the three mathfrakgl₃ central words under a skew hermitian form
LanglandsTunnell.CubicInduction.form_casimir_eq_of_skew_archDeriv0 below · depth 31 - Oscillation bound for cuspidal functions on GL₃(A_ℚ)
LanglandsTunnell.CubicInduction.norm_le_of_isCuspidalAlong_of_arch_oscillation_le10 below · depth 31 - Regularity package for derivative words of centre-finite translates
LanglandsTunnell.CubicInduction.seed_package_of_mem_span_archDeriv_translate9 below · depth 31 - Monic Casimir relations on the GL₃ smoothing module
LanglandsTunnell.CubicInduction.smoothingModule_casimir_relations111 below · depth 31 - Smoothing module on GL₃: leading-coefficient functional and its properties
LanglandsTunnell.CubicInduction.smoothingModule_expansion_leadingCoeff118 below · depth 31 - Orthogonal finiteness and derivative stability of the smoothing module
LanglandsTunnell.CubicInduction.smoothingModule_orthFinite_and_archDeriv_mem117 below · depth 31 - Regularity and gauge growth in the GL₃ smoothing module
LanglandsTunnell.CubicInduction.smoothingModule_regularity_and_growth116 below · depth 31 - The slab form on the GL₃ smoothing module
LanglandsTunnell.CubicInduction.smoothingModule_slabForm139 below · depth 31
… and 60 more statements (search for the module name to find them).