answered 9 years ago
The function you are probably looking for is implicit_plot:
implicit_plot
sage: f(x,y) = x^2 + y^2 -1 sage: implicit_plot(f, (-2, 2), (-2, 2))
Note that there also exists implicit_plot3d for functions in 3 variables.
implicit_plot3d