Ask Your Question
1

How to check two curves on birational equivalence?

asked 2011-11-05 09:06:30 +0200

petRUShka gravatar image

updated 2011-11-05 09:06:51 +0200

I have two curves, for example hyperelliptic:

y^2 = x^6 + 14*x^4 + 5*x^3 + 14*x^2 + 18
y^2 = x^6 + 14*x^4 + 5*x^3 + 14*x^2 + 5*x + 1

How to check them on birational equivalence (is able one curve be birationally transformed to another?) via Sage?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
3

answered 2011-11-12 11:06:17 +0200

William Stein gravatar image

Two projective algebraic curves are birationally equivalent if and only if they are isomorphic (Ch 1, Sec 6 of Hartshorne). You can input both of the above curves into Sage and compute various isomorphism class invariants to see that the curves are not isomorphic over C, hence not birationally equivalent. This paper http://www.warwick.ac.uk/~masjap/amsigusa.pdf has some basic facts about Igusa invariants in it.

sage: R.<x> = QQ[]
sage: C = HyperellipticCurve(x^6 + 14*x^4 + 5*x^3 + 14*x^2 + 18)
sage: D = HyperellipticCurve(x^6 + 14*x^4 + 5*x^3 + 14*x^2 + 5*x + 1)
sage: C.igusa_clebsch_invariants()
(-116896, 396482560, -4236950421504, -19899663217714003968)
sage: D.igusa_clebsch_invariants()
(-51616, 79673344, -1252989108224, -21978176867532800)
edit flag offensive delete link more

Comments

Thanks! But, as I can see, this method can help only if they aren't equivalent. Is it possible to check two curves on birational equivalence in general case?

petRUShka gravatar imagepetRUShka ( 2011-12-22 07:54:20 +0200 )edit

According to your link we should check absolute igusa invariants! We should use `.absolute_igusa_invariants_wamelen()` or `.absolute_igusa_invariants_kohel()` instead of `.igusa_clebsch_invariants()`. And it's true. I can give you two birational equivalent curves but they have different igusa_clebsch_invariants

petRUShka gravatar imagepetRUShka ( 2012-12-24 09:16:21 +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

2 followers

Stats

Asked: 2011-11-05 09:06:30 +0200

Seen: 1,205 times

Last updated: Nov 12 '11