Please write out the maple command to graph the saddle z5y2
Please write out the maple command to graph the saddle z=5y^2 - 2x^2
Solution
As you asked for the command the command to plot graph is \'plot3d(expression, limit1, limit2)\'.
z = 5y^2 - 2x^2
plot3d(z, x=0..1, y=0..1)
Here expresssion is z, and x,y are limits applied for that expression
