I thought I knew root notation quite well, but now I am confused, and various sources say different things.
So how much is $\sqrt[3]{-27}$?
Wikipedia and google both clearly state that the solution would be $-3$ with this notation. However, it has complex principal root $1.5 + 2.59... * i$, which is the Wolfram alpha's solution.
And finally when I pluck it into JavaScript in form of
Math.pow(-27, 1/3)
it returns NaN, and Python throws math domain error.
What is going on? What does $\sqrt[3]{a}; a < 0$ actually mean? Is it really equivalent to ${a^\frac{1}{3}}$ ? And then there is the analogical question for $$\sqrt[n]{a^n}, a < 0; n\mod2 = 1$$ I am so confused by nth roots now.
Personally, I would take the $\sqrt[3]{x}$ notation as the positive root.
– tomcuchta Nov 19 '16 at 16:01