Ask Your Question
1

Elliptic curves - morphism

asked 2019-10-22 10:04:13 +0200

castor gravatar image

updated 2019-10-27 09:57:02 +0200

FrédéricC gravatar image

Consider the example from the documentation:

sage: R.<u,v,t> = QQ[]
sage: Jacobian(u^3+v^3+t, variables=[u,v])
Elliptic Curve defined by y^2 = x^3 + (-27/4*t^2) over
Multivariate Polynomial Ring in u, v, t over Rational Field

how to obtain the morphism in this case?

edit retag flag offensive close merge delete

1 Answer

Sort by » oldest newest most voted
1

answered 2019-10-22 11:01:22 +0200

rburing gravatar image

You can do this:

sage: T.<t> = FunctionField(QQ)
sage: R.<u,v> = T[]
sage: f = u^3+v^3+t
sage: h = Jacobian(f, curve=Curve(f)); h
Scheme morphism:
  From: Affine Plane Curve over Rational function field in t over Rational Field defined by u^3 + v^3 + t
  To:   Elliptic Curve defined by y^2 = x^3 + (-27/4*t^2) over Rational function field in t over Rational Field
  Defn: Defined on coordinates by sending (u, v) to
        ((-t^3)*u^4*v^4 + (-t^4)*u^4*v + (-t^4)*u*v^4 : 1/2*t^3*u^6*v^3 + (-1/2*t^3)*u^3*v^6 + (-1/2*t^4)*u^6 + 1/2*t^4*v^6 + 1/2*t^5*u^3 + (-1/2*t^5)*v^3 : t^3*u^3*v^3)
edit flag offensive delete link more

Comments

Thank you very much, it work well.

castor gravatar imagecastor ( 2019-10-22 11:42:14 +0200 )edit

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: 2019-10-22 10:04:13 +0200

Seen: 210 times

Last updated: Oct 22 '19