Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add .twists() to EllipticCurve_finite_field #34981

Merged
merged 13 commits into from
Feb 24, 2023
5 changes: 5 additions & 0 deletions src/doc/en/reference/references/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -1790,6 +1790,11 @@ REFERENCES:
*Tracking p-adic precision*,
LMS J. Comput. Math. **17** (2014), 274-294.

.. [Connell1999] Ian Connell.
*Elliptic Curve Handbook*.
Online lecture notes, available at
https://git.hackade.org/ben/tinycrypt/raw/branch/master/docs/Elliptic%20Curve%20Handbook.pdf

.. [CS1986] \J. Conway and N. Sloane. *Lexicographic codes:
error-correcting codes from game theory*, IEEE
Trans. Infor. Theory **32** (1986) 337-348.
Expand Down
6 changes: 3 additions & 3 deletions src/sage/schemes/elliptic_curves/ell_field.py
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ def quartic_twist(self, D):

INPUT:

- ``D`` (must be nonzero) -- the twisting parameter..
- ``D`` (must be nonzero) -- the twisting parameter

.. NOTE::

Expand Down Expand Up @@ -271,11 +271,11 @@ def quartic_twist(self, D):

def sextic_twist(self, D):
r"""
Return the quartic twist of this curve by `D`.
Return the sextic twist of this curve by `D`.

INPUT:

- ``D`` (must be nonzero) -- the twisting parameter..
- ``D`` (must be nonzero) -- the twisting parameter

.. NOTE::

Expand Down
Loading