Defining Hessian Curve
How do we define a Hessian Curve on SageMath. I've failed to find a source about this. The curve equation is this
X3+Y3+cZ3=dXYZ and paremetrazied with c and d over the field GF(p)
How do we define a Hessian Curve on SageMath. I've failed to find a source about this. The curve equation is this
X3+Y3+cZ3=dXYZ and paremetrazied with c and d over the field GF(p)
Like this
sage: X,Y,Z=polygens(GF(7),'X,Y,Z')
sage: C = Curve(X**3+Y**3+4*Z**3-2*X*Y*Z)
sage: C.genus()
1
EDIT:
sage: EllipticCurve_from_cubic(X**3+Y**3+4*Z**3-2*X*Y*Z)
Scheme morphism:
From: Projective Plane Curve over Finite Field of size 7 defined by X^3 + Y^3 - 2*X*Y*Z - 3*Z^3
To: Elliptic Curve defined by y^2 + x*y + 3*y = x^3 + 6*x^2 + 4*x + 4 over Finite Field of size 7
Defn: Defined on coordinates by sending (X : Y : Z) to
(-Z : X : 2*X + Y - 2*Z)
sage: _.codomain()
Elliptic Curve defined by y^2 + x*y + 3*y = x^3 + 6*x^2 + 4*x + 4 over Finite Field of size 7
OK, This defines a general curve. Now it is hard to use the Elliptic curves over finite fields tools. Is there a way?
Asked: 4 years ago
Seen: 983 times
Last updated: Aug 19 '20