Documentation

MazurTorsion.Kubert.OrderFourteenReduction

Reduction of a point of order fourteen #

An exact rational point of order 14 can be put in Tate normal form. The checked addition recurrence computes its sixth and seventh multiples. Since the seventh multiple has order 2, its coordinates satisfy

2 * y(7P) + (1-c) * x(7P) - b = 0.

Clearing precisely the denominators introduced by the recurrence gives orderFourteenPolynomial. This file proves only this forward reduction, retaining all denominator conditions and the discriminant scale. It makes no assertion about the rational points of the resulting genus-one parameter curve.

The numerator appearing in the denominator-safe formula for x(6P).

Equations
Instances For

    An auxiliary numerator in the coordinates of 7P.

    Equations
    Instances For

      The numerator in the denominator-safe formula for y(7P).

      Equations
      Instances For

        The affine Tate-parameter equation forced by exact order 14.

        Writing

        • A = c² + c - b,
        • B = b² - bc - c³,
        • C = 2b² - bc² - 3bc + c², and
        • D = b³ - 3b²c + bc³ + 3bc² - c⁵ - c⁴ - c³,

        the equation is 2bA²D - (1-c)cACB - B³ = 0. It is the numerator of 2y(7P) + (1-c)x(7P) - b after multiplication by B³ / b.

        Equations
        • One or more equations did not get rendered due to their size.
        Instances For
          theorem MazurTorsion.Kubert.tateSixX_eq_reduced (b c : ) (hb : b 0) (hc : c 0) (hbc : b c) (hfiveNumerator : c ^ 2 + c - b 0) :
          tateSixX b c = (b - c) * tateSixNumerator b c / (c ^ 2 + c - b) ^ 2
          theorem MazurTorsion.Kubert.tateSixY_eq_reduced (b c : ) (hb : b 0) (hc : c 0) (hbc : b c) (hfiveNumerator : c ^ 2 + c - b 0) :
          tateSixY b c = -c * (b - c) ^ 2 * tateSevenAux b c / (c ^ 2 + c - b) ^ 3
          theorem MazurTorsion.Kubert.tateSevenX_eq_reduced (b c : ) (hb : b 0) (hc : c 0) (hbc : b c) (hfiveNumerator : c ^ 2 + c - b 0) (hsixNumerator : tateSixNumerator b c 0) :
          tateSevenX b c = -b * c * (c ^ 2 + c - b) * tateSevenAux b c / tateSixNumerator b c ^ 2
          theorem MazurTorsion.Kubert.tateSevenY_eq_reduced (b c : ) (hb : b 0) (hc : c 0) (hbc : b c) (hfiveNumerator : c ^ 2 + c - b 0) (hsixNumerator : tateSixNumerator b c 0) :
          tateSevenY b c = b ^ 2 * (c ^ 2 + c - b) ^ 2 * tateSevenYNumerator b c / tateSixNumerator b c ^ 3
          theorem MazurTorsion.Kubert.seven_nsmul_origin_coordinates (b c : ) (hb : b 0) (hc : c 0) (hbc : b c) (hfiveNumerator : c ^ 2 + c - b 0) (hsixNumerator : tateSixNumerator b c 0) (h00 : (tateNormalCurve b c).toAffine.Nonsingular 0 0) :

          Checked recurrence from 6P to 7P, with every denominator recorded.

          Exact order 14 of the marked Tate point forces the denominator-safe X₁(14) parameter polynomial to vanish.

          An exact rational point of order 14 produces a point on the explicit Tate-parameter model of X₁(14). The four recurrence denominators, the next noncuspidal numerator, and the original discriminant scale are retained.

          No classification of rational points on orderFourteenPolynomial b c = 0 is asserted here.