Using MATLAB exponential function:

(-8)^0.333333
ans = 1.0000 + 1.7320i

How to get (-8)^0.333333 = -2 instead?

x=-10:-1;
x.^0.333333

How to get real value?

How to redefine ^:

x.^y

to

sign(x).*abs(x.^y))
link|improve this question

2  
You probably want to read about this: en.wikipedia.org/wiki/Principal_branch – Jason Sep 28 '11 at 2:14
Thank you very much. – h02h001 Sep 28 '11 at 2:39
feedback

3 Answers

up vote 3 down vote accepted

MATLAB 7.0 provides the NTHROOT function, which returns the real roots of a number. So your formula becomes NTHROOT(-8, 3) = -2

If you are using a version prior to MATLAB 7.0 (R14), please read the following:

To obtain the real cube root of a negative real number "x", rather than executing:

x.^(1/3)

use the command:

sign(x).*abs(x.^(1/3))

This will find the absolute value of the root and modify it by the sign of the argument.

See this

link|improve this answer
Thank you very much. How to redefine ^: x.^(1/3) to sign(x).*abs(x.^(1/3)) – h02h001 Sep 28 '11 at 2:30
feedback

There are 3 possible answers for the cube root of -8: -2, 1+/- sqrt(3)

You probably want nthroot(-8,3) --> -2

link|improve this answer
Thank you very much. – h02h001 Sep 28 '11 at 2:40
feedback

In Matlab (and a bunch of other math programs), the power of a number is done by the magnitude and angle on the complex plane.

Since -8 has an angle of 180 degrees and a magnitude of 8, you're getting the complex answer: 60 degrees with magnitude 2 which is: 1.0000 + 1.7320i

If you want the real answer, you need to factor out the -1 and put it back.

-(8)^0.333333 = -2
link|improve this answer
Why the downvote? – Mysticial Sep 28 '11 at 2:13
-1: only matlab explicitly states they are going to favor the complex solution. Mathematica and maple, for example, will present the real solution first if it's available. And in quite a few functions, the matlab documentation explicitly states that they will choose the complex solution in favor of a real solution – Foo Bah Sep 28 '11 at 2:18
@Foo Bah: Thanks for answering. The expression (-8)^0.33333 is an expression, not an equation. Nothing is being solved. If you enter this expression into both Matlab and Mathematica, you get the complex number. – Mysticial Sep 28 '11 at 2:21
Mathematica 7.0 for OSX 64-bit shows -2 – Foo Bah Sep 28 '11 at 2:24
@Foo Bah: I just entered this in Mathematica 7.0 on Win7: (-8)^.333333 answer is 1. + 1.73205 I. What's the exact expression you entered? – Mysticial Sep 28 '11 at 2:25
show 3 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.