[Math] How to compute rational or integer points on elliptic curves

diophantine equationselliptic-curvesfaqmath-softwarereference-request

This is an attempt to get someone to write a canonical answer, as discussed in this meta thread. We often have people come to us asking for solutions to a diophantine equation which, after some clever manipulation, can be turned into finding rational or integer points on an elliptic curve. See here, here, here, here, here. (This list is biased towards questions I have answered because I remember them best; other people have answered such questions as well.) I would like an answer to which, after one of us has explained the cleverness, we could direct the OP.

An ideal answer would address

  • How to find both rational and integer solutions

  • Good software solutions. Ideally, it would nice to have a walkthrough for doing these things with Sage Notebook, so that people could find solutions without even installing anything.

  • References for how to transform some standard presentations of elliptic curves into Weierstrass form, so that we don't have to write out the algebra every time. I'm thinking of a cubic in $\mathbb{P}^2$ with a rational point that is not a flex, $y^2 = \mbox{degree 4 polynomial}$, a $(1,1)$ curve on $\mathbb{P}^1 \times \mathbb{P}^1$, or an intersection of two quadrics in $\mathbb{P}^3$.

Best Answer

The question is rather broad, but here are some references.

Formulas for Weierstrass equation from a plane cubic, $y^2=$ quartic, intersection of two quadrics and some other cases, can be found in Chapter 1 of Ian Connell's Elliptic Curve Handbook .

The $\tt{mwrank}$ algorithm is described in Cremona's book Algorithms for Modular Elliptic Curves. The documentation of this and other routines in Sage for elliptic curves over Q is at http://sagemath.org/doc/reference/sage/schemes/elliptic_curves/ell_rational_field.html.

Connell's ECH chapter 3.6 is on methods for computing Mordell-Weil bases.

Theory and practice for rigorously finding all integer points:

Stroeker & De Weger Solving elliptic diophantine equations: the general cubic case (1999)

Stroeker & Tzanakis, Computing all integer solutions of a genus 1 equation (2003)

The rational and integer point-finding questions have been asked several times on Math Overflow, with references and some code provided. Some answers are directly from the software developers.

https://mathoverflow.net/questions/42016/algorithms-for-finding-rational-points-on-an-elliptic-curve

https://mathoverflow.net/search?q=mwrank

Sage code and references (integral points):

https://mathoverflow.net/questions/6676/integer-points-of-an-elliptic-curve

https://mathoverflow.net/questions/7907/how-to-find-all-integer-points-on-an-elliptic-curve

Sage code (rational points):

https://mathoverflow.net/questions/57498/looking-up-the-mordell-weil-rank-and-generators-of-a-weierstrass-equation/57502#57502

Other items of note -

  1. All the current algorithms for computing the Mordell Weil group are conditional on conjectures such as BSD or the finiteness of Sha.

  2. Some of the software routines take as input a general Weierstrass model $ Y^2 + a_1 XY + a_3 Y = X^3 + a_2 X^2 + a_4 X + a_6 $, not the rational Weierstrass form $y^2 = x^3 + Ax + B$. The latter would be entered as $(a_1,a_2,a_3,a_4,a_6) = (0,0,0,A,B)$.

Related Question