order finite field
Hello
sage: E = EllipticCurve(GF(19),[0,3])
sage: E
Elliptic Curve defined by y^2 = x^3 + 3 over Finite Field of size 19e
sage: E.order()
13
How to calculate "13" ? i can understand, sorry i am new
Hello
sage: E = EllipticCurve(GF(19),[0,3])
sage: E
Elliptic Curve defined by y^2 = x^3 + 3 over Finite Field of size 19e
sage: E.order()
13
How to calculate "13" ? i can understand, sorry i am new
You can get the source code of the order method by typing:
sage: E.order??
As you can see, this is basically a handler that decides which algorithm fits best since you did not specify one. In your case, it will use pari, so you have to look at the pari source code.
You can also have a look at
sage: E.cardinality_bsgs??
which implements "Mestre's trick", or
sage: E.cardinality_exhaustive??
which counts vertically over each x-value.
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2020-05-17 09:22:26 +0100
Seen: 839 times
Last updated: May 17 '20
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.