When use the following command to plot a graph
Plot[x^(1/3), {x, -1, 1}]

Mathematica does not show the range [0, 1]. It does not show the range [-1, 0]. While for function 1/x it does.
Plot[1/x, {x, -1, 1}]

How can I make Mathematica show the range specified for x^(1/3) ?
Reto obtain the real component and plot that. – C. E. Jul 04 '15 at 21:30CubeRootandSurdfor real-valued functions. – Michael E2 Jul 04 '15 at 22:19Plotbut with the cube root itself. See Finding real roots of negative numbers. – Jul 04 '15 at 22:51