1 | initial version |
The following workaround can help:
sage: plot(lambda x: sgn(x)*(x*sgn(x))^(1/3), (-5, 5))
2 | No.2 Revision |
The following workaround can help:
sage: plot(lambda x: sgn(x)*(x*sgn(x))^(1/3), (-5, 5))
One can also use an implicit plot:
sage: implicit_plot(y^3 == x, (x, -5, 5), (y, -2, 2))