| 1 | initial version |
One way is like that:
sage: var('x,y')
(x, y)
sage: f=x**2+y**2
sage: contour_plot(f,(x,-2,2),(y,-2,2))
You can also use plot3d to see the function as a surface in space:
sage: plot3d(f,(x,-2,2),(y,-2,2))
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.