Ask Your Question
1

Question about 2d plot

asked 2011-11-13 07:15:54 +0200

klove gravatar image

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.

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
2

answered 2011-11-13 13:36:43 +0200

William Stein gravatar image
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')

image description

edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

Stats

Asked: 2011-11-13 07:15:54 +0200

Seen: 269 times

Last updated: Nov 13 '11