Degree-two and subquadratic local Euler factors are complementary
OpenHorizontalPadicL.localEulerFactorDegreeTwo_iff_not_degreeBelowTwoelliptic-curvesl-functionsnumber-theory
Let be an elliptic curve and let be prime. The local Euler polynomial at has degree at most two: its degree is two at good reduction, one at multiplicative reduction, and zero at additive reduction. Consequently, it has degree exactly two if and only if it does not have degree strictly below two.
In the coefficient-side formulation used by this project, this says that the normalized quadratic recurrence
holds for every if and only if the subquadratic recurrence
does not hold for every .
Preamble
import Definitions.Def_HorizontalPadicL_LocalEulerFactorDegree set_option autoImplicit false noncomputable section
Formal statement
namespace HorizontalPadicL
/-- The local Euler polynomial of an elliptic curve has degree at most two, so
having degree two is equivalent to not having degree strictly below two. In the
coefficient-side definitions used here, this identifies the normalized
quadratic recurrence with the negation of the subquadratic recurrence. -/
theorem localEulerFactorDegreeTwo_iff_not_degreeBelowTwo
(E : WeierstrassCurve ℚ) [E.IsElliptic]
(p : ℕ) (hp : p.Prime) :
LocalEulerFactorDegreeTwo E p ↔
¬ LocalEulerFactorDegreeBelowTwo E p := by
sorry
end HorizontalPadicLSource
Mathlib, WeierstrassCurve.localPolynomial: the good, multiplicative, and additive cases have degrees 2, 1, and 0 respectively; https://github.com/leanprover-community/mathlib4/blob/0df444a360eaa60ab8c11dca51a86af692955474/Mathlib/AlgebraicGeometry/EllipticCurve/LFunction.lean#L31-L41