Wolfram mathematica show wrong function graph

341 Views Asked by At

I'm trying to plot this function: $\sqrt[3]{3-x}$ in Mathematica. I have tried various numbers in Y range and X range, but wolfram only shows half of the graph. Google or desmos.com plot the correct function.

https://i.stack.imgur.com/u5RrV.png

Any help is appreciated.

2

There are 2 best solutions below

2
On BEST ANSWER
Plot[Sign[#]Abs[#]^(1/3)&[3-x], {x,-1,7}]
2
On

For me Plot[CubeRoot[3 - x], {x, -12, 12}] is working.