how to graph this two paraboloids into one graph in Maple? z=x^2+y^2 and z=2-x^2-y^2 I try to use Display, Display3d commend, and it doesn't work.
>with(plots)
>f:=(x,y,z)->z=x^2+y^2;
>implicitplot3d(f(x,y,z),x=-5..5,y=-5..5,z=-5..5);
>f:=(x,y,z)->z=2-x^2-y^2;
>impliticitplot3d(f(x,y,z),x=-5..5,y=-5..5,z=-5..5);
and if I want to combine the two graph into one, what should I do next?