I am studying elliptic curves. I have an operation that I want to resolve. $y^2 = x^3 + 8x + 3$ on the field $\mathbb {F}_{23}$. And I try to find the coordinates of three distinct points on the curve that are not the infinite points. Can someone help to understand how I should proceed?
Asked
Active
Viewed 50 times
0
F := GF(23); E:= EllipticCurve([F| 8,3]); E; Points(E);http://magma.maths.usyd.edu.au/calc/ – reuns Dec 21 '19 at 00:05