There are two functions, f(x,y)=x + y^2 - 8; g(x,y)=-3 x^2 + y^2 - 5; How can I get the intersection of these two curves? And how about the intersection among f(x,y),g(x,y) and z=0?
Thanks
There are two functions, f(x,y)=x + y^2 - 8; g(x,y)=-3 x^2 + y^2 - 5; How can I get the intersection of these two curves? And how about the intersection among f(x,y),g(x,y) and z=0?
Thanks
In general, "please do this" questions without attempts are not answered. I post this with the hope that it will motivate self exploration:
You can do this directly:
f[x_, y_] := x + y^2 - 8
g[x_, y_] := -3 x^2 + y^2 - 5
sol = {x, y} /. Solve[{f[x, y] == 0, g[x, y] == 0}, {x, y}];
ContourPlot[{f[x, y], g[x, y]}, {x, -5, 5}, {y, -5, 5},
Contours -> {0}, Epilog -> {Red, PointSize[0.02], Point /@ sol}]