First time here? Check out the FAQ!
answered 2016-03-23 12:23:51 +0100
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