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

Defining Hessian Curve

asked 4 years ago

klx gravatar image

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)

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 4 years ago

FrédéricC gravatar image

updated 4 years ago

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
Preview: (hide)
link

Comments

OK, This defines a general curve. Now it is hard to use the Elliptic curves over finite fields tools. Is there a way?

klx gravatar imageklx ( 4 years ago )

Your Answer

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

Add Answer

Question Tools

1 follower

Stats

Asked: 4 years ago

Seen: 983 times

Last updated: Aug 19 '20