Ask Your Question
1

How do I obtain the generator of a elliptic curve? Is E.gens() only for the generator for the free part of the group or is for torsion also?

asked 2020-01-05 10:20:33 +0200

AB gravatar image

updated 2020-01-05 17:21:38 +0200

FrédéricC gravatar image

Code:

sage: E = EllipticCurve([0,-1,0,-4,-2])
sage: E.gens()    
[(3 : 2 : 1)]
sage: T = E.torsion_subgroup()
sage: T.points()
[(0 : 1 : 0), (-1 : 0 : 1)]

What is the generator of the group E(Q)?Is it the point (3,2) only? or the point (3,2)+(-1,0)?

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
0

answered 2020-05-28 17:53:27 +0200

John Cremona gravatar image

E.gens() gives a list of generators for E(Q) modulo torsion. You can get the generators of the torsion subgroup with E.torsion_subgroup().gens().

It would be possible to add an option to E.gens() to include torsion generators. Right now (Sage 9.1) E.gens() is a list while E.torsion_subgroup().gens() is a tuple so it is a bit awkward:

sage: E.gens()+list(E.torsion_subgroup().gens()) 
[(3 : 2 : 1), (-1 : 0 : 1)]
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2020-01-05 10:20:33 +0200

Seen: 522 times

Last updated: May 28 '20