The expression $\displaystyle (-10)^\frac{1}{3}$ returns errror when calculated with scientific calculator returns an imaginary number. But it's power is $\dfrac{1}{\text{odd number}}$.
2026-03-27 12:20:02.1774614002
$(-10)^\frac{1}{3}$ comes out to be imaginary
93 Views Asked by Bumbble Comm https://math.techqa.club/user/bumbble-comm/detail At
2
Most calculators utilize the $log$ function to calculate powers, using$$x^y=e^{y\ln x}$$ given that $e^x$ and $\ln x$ are calculated quickly thanks to the math (embedded) processor.
A negative $x$ is either treated directly (using $i^2=-1$) or it's made positive first, and the negative is dealt with after.
In your case, probably that $(-10)^{\frac13}$ is calculated as $e^{\frac13 \ln(-10)}$, and $\ln(-10)$ would be calculated as $\ln(10i^2)$