HP Forums

Full Version: Fractional exponents vs. radical form ...
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pardon my English, but math is not my native language:

Frustration: Expressions, (or equations), similar to x^([even numbered numerator]/denominator), when x<0.

An Example:

(-1)^(2/3); ==> (-1/2)+i*sqrt(3)/2
(3) NTHROOT ((-1)^2); ==> 1, the desired result

f(x):=(x^(2/3));
g(x):=((3) NTHROOT (x^2));
subst({f(x), g(x)}, x=(-1)); ==> {((1/2)+(i*sqrt(3)/2))^2,1}

A setting would be nice, that would force fractional exponents, to be the same as their radical form ... not sure how to best define it, but like obscenity, "I know it when I see it!"

-Dale-
XCas> radpow(a,b) := surd(a^numer(b), denom(b))

numer(b), denom(b) had b simplified first, which is exactly what we wanted
Note: this assumed b is not symbolic variable

XCas> radpow(-64, 2/6)       // = radpow(-64, 1/3) = surd(-64,3) = -4
XCas> radpow(-64, 3/6)       // = radpow(-64, 1/2) = surd(-64,2) = 8*i
XCas> radpow(-64, 4/6)       // = radpow(-64, 2/3) = surd(4096,3) = 16

see https://www.math.ubc.ca/~israel/advisor/.../a37r1.htm
(03-10-2020 09:40 AM)DrD Wrote: [ -> ]Pardon my English, but math is not my native language:

Frustration: Expressions, (or equations), similar to x^([even numbered numerator]/denominator), when x<0.

An Example:

(-1)^(2/3); ==> (-1/2)+i*sqrt(3)/2
(3) NTHROOT ((-1)^2); ==> 1, the desired result

f(x):=(x^(2/3));
g(x):=((3) NTHROOT (x^2));
subst({f(x), g(x)}, x=(-1)); ==> {((1/2)+(i*sqrt(3)/2))^2,1}

A setting would be nice, that would force fractional exponents, to be the same as their radical form ... not sure how to best define it, but like obscenity, "I know it when I see it!"

-Dale-

The root function has a different defining area/range from rational or reciprocal exponent function.
That according to high school math.
Aside from the pure mathematical rigor, a setting allowing the user this option looks useful.
(03-10-2020 04:53 PM)lrdheat Wrote: [ -> ]Aside from the pure mathematical rigor, a setting allowing the user this option looks useful.

nthroot allows what is supposed to be allowed.
For wrong math turn to Casio or TI.
I agree that the decimal approximation would produce an answer of the sort that was objected to (or at least asked for a choice in how the fractional power was interpreted). A choice would be nice for a fractional exponent that could be interpreted as symbolically equivalent to a surf/nroot as an option.
(03-11-2020 12:56 AM)lrdheat Wrote: [ -> ]I agree that the decimal approximation would produce an answer of the sort that was objected to (or at least asked for a choice in how the fractional power was interpreted). A choice would be nice for a fractional exponent that could be interpreted as symbolically equivalent to a surf/nroot as an option.

no
(03-10-2020 02:51 PM)CyberAngel Wrote: [ -> ]The root function has a different defining area/range from rational or reciprocal exponent function.
That according to high school math.

The use of parentheses, (-1) in my original example, was an important distinction, (to clarify the order of operations). My thinking was that:

x^[even numerator]/denominator;

would result in a real-value, regardless of the fractional vs. radical form, (for real-value inputs).

Example:

x^(2/1) where x=(-n)

Processed as:

[(-n) * (-n)] = (+)n^2,

not:

-1 * (n * n) = (-)n^2.
Reference URL's