Loading [MathJax]/jax/output/HTML-CSS/jax.js
Ask Your Question
1

Find all n-torsion of an elliptic curve

asked 9 years ago

Lee Wang gravatar image

I'm sorry if this is a really easy question. I found out how to compute the n-torsion of an elliptic curve E over a given field. But what if I would like to do is find a field K such that all n-torsion points of E are defined over K.

In effect compute the n-torsion part of the Tate module. Is this possible with Sagemath?

Preview: (hide)

2 Answers

Sort by » oldest newest most voted
2

answered 8 years ago

John Cremona gravatar image

The exact answer to your question is to use the mehod division_field, for example

sage: E = EllipticCurve([0,-1,1,-10,-20])
sage: E.division_field(5,'a')
Number Field in a with defining polynomial x^4 - x^3 + x^2 - x + 1

so that

sage: len(E.change_ring(K).torsion_points())
25

but as Nils said the degree is in general very large -- I chose an example where the degree of the 5-division field is only 4, which is as small as possible over QQ.

Preview: (hide)
link
2

answered 9 years ago

nbruin gravatar image

this would get you close:

E.torsion_polynomial(n).splitting_field()

You're just some quadratic extensions away from the desired field (you just need to make sure that roots of the division polynomial are indeed x-coordinates of points).

Be careful, though: generally such explicit representations of splitting fields are entirely unworkable because they tend to have very high degrees.

Preview: (hide)
link

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 9 years ago

Seen: 1,014 times

Last updated: Sep 27 '16