Question about 2d plot
I have 2 equations x^2 + y=1 & x+3y=6 and I need to make a graph but I dont know how. Can anyone help me?
Thanks for your time.
add a comment
var('x,y')
implicit_plot(x^2 + y == 1, (x,-2,2),(y,-2,2)) + implicit_plot(x + 3*y==6, (x,-2,2),(y,-2,2),color='red')

Asked: 2011-11-13 07:15:54 +0100
Seen: 880 times
Last updated: Nov 13 '11
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.