How to calculate (-3)^(1/3) in real numbers #217
Answered
by
axkr
tranleduy2000
asked this question in
Q&A
-
Beta Was this translation helpful? Give feedback.
Answered by
axkr
Apr 4, 2019
Replies: 2 comments
-
Because there is no symbolic representation you can try the numeric mode for Surd(-3, 3) // N CubeRoot(-3) // N or you can try NSolve(x^3 + 3 == 0, x) |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
axkr
-
Thanks for your support. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Because there is no symbolic representation you can try the numeric mode for
Surd
orCubeRoot
:or you can try
NSolve
to also get the complex values: