When I do Plot3D[z^(1/3), {z, -10, 10}] in Mathematica, it just outputs the command back to me. There is no plot.
Oddly, Wolfram Alpha displays a plot just fine.
http://www.wolframalpha.com/input/?i=Plot3D[z^%281%2F3%29%2C++[z%2C+-10%2C+10]]
Is there something different that I have to do in Mathematica?
Plot3Dneeds two dimensions, tryPlot. 2) You're going to end up with complex numbers so you'll probably need to specifyRe[z^(1/3)]orIm[z^(1/3)], or you'll wind up with inexplicably empty regions. To get the plots you're seeing in Alpha doPlot3D[Re[z^(1/3),{z,-10,10},{x,-10,10}]orPlot3D[Im[z^(1/3),{z,-10,10},{x,-10,10}]Plot3D[Re@(z^(1/3)), {z, -10, 10}, {y, -10, 10}]Plot3D[Im@(z^(1/3)), {z, -10, 10}, {y, -10, 10}]– Dimitris Oct 15 '15 at 15:23Plotinstead ofPlot3D, you will probably want to useCubeRoot[z]instead ofz^(1/3). The former uses the surd form (suitable for getting real values on negative input) whereas the latter uses the principal root. – Daniel Lichtblau Oct 15 '15 at 15:29