Dealing with non-integral powers on negative numbers

Solution 1:

In the context of complex numbers, $a^b$ (for $a \ne 0$) is a "multi-valued function", defined as $\exp(b \log(a))$ where $\log(a)$ is any of the branches of the natural logarithm of $a$. This is multivalued because you can add any integer multiple of $2\pi i$ to a value of $\log(a)$ and get another one.

Since $2/6 = 1/3$, $(-8)^{2/6}$ is the same as $(-8)^{1/3}$. This is $\exp((1/3) \log(-8))$, and $\log(-8) = 3 \ln(2) + (2n+1) \pi i$ for integer $n$, so we get $2 \exp((2n+1) \pi i/3)$ which has three different possible values: $2 \exp(\pi i/3) = 1 + \sqrt{3}\; i$, $2 \exp(\pi i) = -2$ and $2 \exp(5 \pi i/3) = 1 - \sqrt{3}\; i$.

What you apparently meant was $((-8)^2)^{1/6}$, which is not the same thing. The "laws of exponents" have to be modified when complex numbers are involved.
$$((-8)^2)^{1/6} = 64^{1/6} = \exp((1/6) \log(64)) = \exp(\ln(2) + n \pi i/3)$$ which has $6$ possible values: the three we had before as well as $2$, $-1+\sqrt{3}\; i$ and $-1-\sqrt{3}\; i$.