I'm plotting the function x^3 + 5xy - y^2 in Maxima.
plot3d([x^3+5xy - y^2,[x,-2,12],[y,-2,12]]);
What I would like to do is add a point at (0,0,0) to the graph.
plot3d([0,0,0],[x,-2,12],[y,-2,12]);
runs, but does not actually show anything (???). And in any case,
plot3d([[x^3+5xy - y^2,[x,-2,12],[y,-2,12]], [[0,0,0] ,[x,-2,12],[y,-2,12]]]);
gives an error (plot3d: argument must be a list of three expressions;).
Does anyone have an idea how this might work?
Try