-
-
Notifications
You must be signed in to change notification settings - Fork 704
Closed
Milestone
Description
The current version of Denis Simon's 2-descent program (in Sage since #11005) has a bug:
sage: K.<y> = NumberField(x^4 + x^2 - 7);
sage: E = EllipticCurve(K, [1, 0, 5*y^2 + 16, 0, 0])
sage: E.simon_two_descent(lim1=2, limtriv=3)
[0, 0, []]
The rank is in fact 1, and a correct return value would be (1, 1, [(-369/25*y^3 + 539/25*y^2 - 1178/25*y + 1718/25 : -27193/125*y^3 + 39683/125*y^2 - 86816/125*y + 126696/125 : 1)]).
This ticket is just to fix this as quickly as possible; it should eventually be fixed in a new version of Simon's program.
(See #15608 for a list of tickets related to simon_two_descent.)
Upstream: Reported upstream. No feedback yet.
CC: @JohnCremona @mmasdeu
Component: elliptic curves
Keywords: simon_two_descent
Author: Peter Bruin
Branch/Commit: 275e4be
Reviewer: Marc Masdeu
Issue created by migration from https://trac.sagemath.org/ticket/16022