Archive for December, 2006

Elliptic Divisibility Sequences

Friday, December 15th, 2006

As I continue to try and get a grasp of heights on elliptic curves, I’ve been looking into the various techniques available for computing them. Since the literal definition as a limit is unworkable, it is common to follow the approach of Silverman and consider the archimedean and nonarchimedean heights in turn. This isn’t too difficult to implement (it’s given in Cremona’s book as well as Silverman’s paper1), but requires a switching process to avoid certain technical wrinkles. An unpublished paper by my supervisor gives a variation on the theme which avoids the switching; I managed to get both working - and agreeing - in Maple fairly easily.

However, there is a radically different approach possible using Elliptic Divisibility Sequences. These a priori needn’t have anything to do with elliptic curves: they’re simply a type of sequence governed by a not-too-unpleasant rule for iteration: plenty of information on them is available from Graham Everest’s homepage. What’s remarkable, however, is that given an elliptic curve a sequence can be defined which allows you to recover the height of points on that curve. There are numerous advantages to this: it doesn’t matter whether you’re working over the rationals or some other number field; you needn’t have a minimal equation for the curve; and computation is essentially mechanical, as the algebraic geometry is hidden from view. For instance, to follow Silverman’s approach (or variations) it is necessary to factorise the discrinant of the curve to establish primes of bad reduction- this may take up the lions’ share of computation time, but isn’t needed when working via EDS.

There are however sacrifices to be made regarding efficiency or accuracy. Searching for points of very small height clearly only requires a few decimal places of accuracy to indicate whether you’re on the right track; but working purely from the definition of an EDS even this can be cripplingly slow to obtain. Thus, guided by Rachel Shipsey’s PhD thesis2, I’ve been trying to create a useful implementation in Maple. The fruits of my labour can be obtained here; they’re still not perfect, as a couple of the examples given by Everest and Ward still cause things to grind to a halt.

Nonetheless, they chew through the others quite happily, and are a lot simpler to use than they were to write! To get started, simply run eds_init with three arguments- the second, third and fourth terms of your sequence. Terms 0 and 1 are assumed to be 0 and 1, for a ‘proper’ EDS. Then, a call to termk(n) will give you the nth term of the sequence. You’ll find that globally there’s a vector h storing all known terms, and another h_known indicating just which those are: typically (and preferably) not all of them, since with Shipsey’s techniques determining the six neighbours of a term hn allows for a jump to the terms h2n (or h2n+1) and its neighbours. In this way, a double and add approach can be employed to obtain a desired term efficiently. There’s still room for improvement here, since this is only the case k=1 from Shipsey’s algorithm: knowing larger factors k allows yet greater jumps through the sequence (to h2kn from hk and hn etc). I’m also tempted to try coding them in PARI instead; I think Maple is stumbling more on performing calculations such as finding norms and gcds than determining the terms themselves, and PARI may be better suited to these.

To get an estimate of the height (as described by Everest and Ward3) , use height_everest(n,d,acc,x,y): n is term of the sequence you wish to work with (the higher the better but slower); d should be the degree of the field etension over the rationals; acc is the level of accuracy (in decimal places) passed to Maple’s eval function during the approximation of the logarithm; whilst x and y are the coordinates of the point of interest.

References

1: Silverman- Computing heights on elliptic curves. (MathSciNet entry)

2: Shipsey- Elliptic Divisibility Sequences (Download)

3: Everest, Ward- The canonical height of an algebraic point on an elliptic curve. (MathSciNet entry) (Download [PS])

Curves with large Szpiro ratios

Monday, December 4th, 2006

The Szpiro conjecture asserts that only finitely many elliptic curves have a Szpiro ratio greater than six, so I thought it’d be interesting to see if I could find any. Moreover, the result of Hindry and Silverman ensures that the greater the Szpiro ratio, the smaller the lower bound for the height of points on a curve; so there was a natural place to start looking- Elkies’ list of the nontorsion points of low height. Armed with PARI, and learning how to use it as I went, I set about computing the ratios for these curves of interest, alongside a couple of thousand test cases for comparison.

The largest ratio uncovered was around 5.6 (curve 3822bg1), but more importantly the lowest was around 2.96 (curve 1110m1), a not particularly inspiring value compared to the other data set. Further, there wasn’t a particularly strong correlation between the rankings according to ratio and height- the four largest Szpiro ratios arising from entries 6, 33, 52 and 38 on Elkies list by height. It seemed, therefore, that points could have impressively small height despite coming from curves of moderate ratio; whilst a high ratio was no guarantee of small height values.

To be thorough, I then set PARI and its elldata package loose on the curves of conductor 2000 or less, of which there are about eleven thousand, to see what kind of ratios could be reached. However, I quickly noticed that rank zero curves could generate high values, but are only relevant to the Szpiro conjecture itself; they have no nontorsion rational points to bound the height of! Below the cut I’ve therefore given the top 10 ratios observed (the best being 8.9), and then all the curves (23) of non-zero rank that attain a ratio above 6.

These I had hoped would therefore be good candidates for small heights, but as the tabulated values show this is very much not the case. Indeed, it seems that the ratio-dependent bounds given by Hindry & Silverman’s result are many orders of magnitude smaller than any heights known. Since no known points are anywhere near close enough to these bounds, ratio-based variations won’t create meaningful extra breathing space; and thus deliberately crafting curves with high Szpiro ratio is unlikely to be a sensible way to seek small heights. Which is a disappointing result, but one probably worth knowing; and there may still be interesting things to say about the distribution of values of the ratio. From my computations on 11308 curves: The lower bound is 1; the average is about 2.82; and the proportion of curves clearing the magical 6 mark is 1.19%, which must of course tend to zero as the sample size increases if the conjecture is to hold.

Read the rest of this entry »