1 | initial version |
The documentation for Sage plotting in 2 dimensions is here. From your description, I think you are talking about region_plot(). Here's an example:
x,y = var('x,y')
region_plot([x^2 + y < 1, x < y], (x,-2,2), (y,-2,2))
The region plotted consists of the points satisfying both equations (intersection).
2 | No.2 Revision |
The documentation for Sage plotting in 2 dimensions is here. From your description, I think you are talking about region_plot(). Here's an example:
x,y = var('x,y')
region_plot([x^2 + y < 1, x < y], (x,-2,2), (y,-2,2))
The region plotted consists of the points satisfying both equations (intersection).(intersection), where x is in the interval [-2,2] and y is in the interval [-2,2].
3 | No.3 Revision |
The documentation for Sage plotting in 2 dimensions is here. From your description, I think you are talking about region_plot(). Here's an example:
x,y = var('x,y')
region_plot([x^2 + y < 1, x < y], (x,-2,2), (y,-2,2))
The region plotted consists of the points satisfying both equations inequalities (intersection), where x is in the interval [-2,2] and y is in the interval [-2,2].