I'm currently having trouble trying to plot multiple planes into Mathematica. The planes that I'm supposed to plot are
x=0,
y=0,
x+y=1,
x+z=0 and
z=x^2+y^2.
I've noticed that I can't plot planes if the z-variable isn't there. I've tried using Plot3D, ContourPlot3D and ParametricPlot3D but I'm not having any success.
The second problem is trying to calculate the area that is enclosed by the planes themselves.
Any suggestions?
EDIT: I managed to plot the graphs. Is there an easy way to integrate between the surfaces or some other way to find the volume that is being surrounded by the planes. Props to Kuba and Dr. belisarius by the way :)!
EDIT2: Heres the code that i used to plot the equations.
ContourPlot3D[{x == 0, y == 0, x + y == 1, x + z == 0, z == x^2 + y^2}, {x, -5, 5},
{y, -5, 5}, {z, -5, 5}]
ContourPlot3D[x == 0, {x, -2, 2}, {y, -2, 2}, {z, -2, 2}]. – Kuba Feb 24 '16 at 20:51z=x^2+y^2.is an uncommon plane – Dr. belisarius Feb 24 '16 at 20:52