Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

First off, the method is called .rational_parameterization() not just .parameterization(), but nevertheless it gives an error.

You can try to start with

P2.<x,y,z> = ProjectiveSpace(QQ, 2)
f = (x^2+y^2)^4 - 3*(x^2+y^2)^2 - 2*(x^2-y^2)
C = Curve( f.homogenize(z) )

and then proceed as in this answer.