| 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.
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.