how to generate Cayleygraph
Hello,
how can I generate a cayleygraph for
y^2 = x^3+ax ;
a, could be 1 or 2 or 3 ;
p = 17
The producer points should be identifiable in this graph.
Thanks
Hello,
how can I generate a cayleygraph for
y^2 = x^3+ax ;
a, could be 1 or 2 or 3 ;
p = 17
The producer points should be identifiable in this graph.
Thanks
Does this give what you want?
sage: E = EllipticCurve(GF(17), [1, 0]) # [1,0] -> coefficient of x, constant term
sage: E
Elliptic Curve defined by y^2 = x^3 + x over Finite Field of size 17
sage: A = E.abelian_group()
sage: G = A.permutation_group()
sage: G.cayley_graph()
Digraph on 16 vertices
I don't know. You can look at the documentation for the cayley_graph method: http://doc.sagemath.org/html/en/refer...
Please start posting anonymously - your entry will be published after you log in or create a new account.
Asked: 2019-06-17 13:08:42 +0100
Seen: 264 times
Last updated: Jun 18 '19