Processing math: 100%
Ask Your Question
0

Birational Transformation

asked 11 years ago

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

x2+y21/x2+y21/x2+x2y2/x21+x2y2

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 11 years ago

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

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: 11 years ago

Seen: 365 times

Last updated: May 28 '13