#the function is sin(x^2 +3*y)^3 and we are plotting it from x=-1 to 2 and from y=-3 to 1
#you can also rotate the plot
plot3d( sin(x^2 + 3*y)^3,(x,-1,2),(y,-3,1))
#here is an implicit plot graphing the solution set to the equation x^2 + y^2 - z^2 - 2 = 0
#
implicit_plot3d(x^2 + y^2 - z^2 - 2,(x,-2, 2), (y,-2, 2), (z,-2, 2))