Ask Your Question
0

Birational Transformation

asked 2013-05-28 12:16:57 +0200

guissmo gravatar image

How do I apply a birational transformation x --> 1/x, then clear the denominators. Is there a way I could do that in SAGE?

x, y = QQ['x,y'].gens()
C = Curve(x^2+y^2)
# the code I'm looking for here

$x^2 + y^2 \mapsto 1/x^2 + y^2 \mapsto 1/x^2 + x^2y^2/x^2 \mapsto 1 + x^2y^2$

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2013-05-28 13:10:19 +0200

vdelecroix gravatar image

Perhaps

sage: x, y = QQ['x,y'].gens()
sage: P = x^2 + y^2
sage: Q = P(1/x, y)
sage: Q.denominator() * Q
x^2*y^2 + 1
edit flag offensive delete link more

Your Answer

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

Add Answer

Question Tools

Stats

Asked: 2013-05-28 12:16:57 +0200

Seen: 275 times

Last updated: May 28 '13