My son had this question on his college algebra homework. Solve $x^\frac{2}{7}=16$.
The question doesn't specify the domain, but they have learned about complex numbers.
It's an online homework assignment, and it tells him if his answer is correct and will let him change to a different answer. The online system would not accept the answer 16384, but would only accept the answer {16384, -16384}.
R says $(-16384)^\frac{2}{7}$ is not a number (NaN).
Mathematica says $(-16384)^\frac{2}{7}=16 (-1)^\frac{2}{7}$, which begs the question: What is $(-1)^\frac{2}{7}$?
I understand that $((-16384)^2)^\frac{1}{7}=16$, but $((-16384)^\frac{1}{7})^2$ is again not a number according to R and is $16 (-1)^\frac{2}{7}$ according to Mathematica.
Finally, using Solve or Reduce in Mathematica, it says there is only one solution $x=16384$.
There are two different conventions at work here which lead to different answers.
First their is the basic algebra convention that $x^{\frac{a}{b}}$ for $\frac{a}{b}$ a fully reduced fraction should be interpreted as $(x^a)^{\frac{1}{b}}$. If you interpret it this way, then indeed $x=-16384$ and $x=16384$ are the two solutions to the equation $x^{\frac{2}{7}}=16$.
Second there is a general interpretation of $x^y$ for $x \in \mathbb{C} \setminus \{0\}$ and $y \in \mathbb{R}$. Write $x=r\cdot e^{i\varphi}$ in polar coordinates, with $ r > 0$ and $\varphi \in [0, 2\pi)$, then $x^y = (r\cdot e^{i\varphi})^y = r^y \cdot e^{iy\varphi}$. This is also a complex number in polar coordinates if you interpret the $y\varphi$ modulo $2\pi$. With this interpretation there is only a single complex solution to $x^{\frac{2}{7}}=16$, namely $x=16384$, but $x=-16384$ is not a solution.