Yesterday I found what I thought to be the typical "99% of readers won't be able to solve it" image, with a simple math question. Despite its looks, it yielded this polynomic equation with the imaginary unit as the exponent.
$$b^{\pm i}-b = 3.$$
The $\pm$ symbol is due to the exponent being the solution of a previous equation, which had two different solutions.
I've been able to solve it numerically by using Halley's method, but I'm struggling to find the exact solutions. By using some complex number properties I've been able to change the base to $e$, turn everything into polar form and separate each equation into a system, equaling the real part to $3$ and the imaginary part. Still, I don't know how to continue. This is what I've done so far.
My first objective was to have an equation system working on the $\mathbb{R}$ domain. To do so, I change the base to $e$, so I can use Euler's formula later.
$$e^{\pm i \log(b)} = 3+b.$$
Then I apply the definition of the complex logarithm that states $\log(x) = \log(|x|)+i \cdot \arg(x)$. This definition may be wrong since I don't remember very well the stuff about the complex logarithm. I do this to prevent having $\sin$ and $\cos$ with complex angles.
$$e^{\pm i (\log(|b|)+i \cdot \arg(b))}=3+b.$$
\begin{equation} \begin{cases} e^{-\arg(b)+i \cdot \log(|b|)}=3+b,\\ e^{\arg(b)-i \cdot \log(|b|)}=3+b. \end{cases} \end{equation}
Now I apply Euler's formula to get rid of the complex exponent.
\begin{equation} \begin{cases} e^{-\arg(b)}(\cos(\log(|b|)) + i \cdot \sin(\log(|b|)))=3+b,\\ e^{\arg(b)}(\cos(\log(|b|)) - i \cdot \sin(\log(|b|)))=3+b, \end{cases} \end{equation}
\begin{equation} \begin{cases} e^{-\arg(b)}\cos(\log(|b|)) + ie^{-\arg(b)} \sin(\log(|b|))=3+b,\\ e^{\arg(b)}\cos(\log(|b|)) - ie^{\arg(b)} \sin(\log(|b|))=3+b. \end{cases} \end{equation}
And now I turn the right part $b$ into polar form, so I only have $|b|$ and $\arg(b)$ in the equations.
\begin{equation} \begin{cases} e^{-\arg(b)}\cos(\log(|b|)) + ie^{-\arg(b)} \sin(\log(|b|))=3+|b|\cos(\arg(b)) + i|b|\sin(\arg(b)),\\ e^{\arg(b)}\cos(\log(|b|)) - ie^{\arg(b)} \sin(\log(|b|))=3+|b|\cos(\arg(b)) + i|b|\sin(\arg(b)), \end{cases} \end{equation}
\begin{equation} \begin{cases} e^{-\arg(b)}\cos(\log(|b|)) - |b|\cos(\arg(b)) + i(e^{-\arg(b)} \sin(\log(|b|)) - |b|\sin(\arg(b))) = 3,\\ e^{\arg(b)}\cos(\log(|b|)) - |b|\cos(\arg(b)) - i(e^{\arg(b)} \sin(\log(|b|)) + |b|\sin(\arg(b))) = 3. \end{cases} \end{equation}
With this, I was able to get two equation systems for each possible solution.
\begin{equation} \begin{cases} e^{-\arg(b)}\cos(\log(|b|)) - |b|\cos(\arg(b)) = 3,\\ e^{-\arg(b)}\sin(\log(|b|)) - |b|\sin(\arg(b)) = 0, \end{cases} \end{equation}
and
\begin{equation} \begin{cases} e^{\arg(b)}\cos(\log(|b|)) - |b|\cos(\arg(b)) = 3,\\ e^{\arg(b)}\sin(\log(|b|)) + |b|\sin(\arg(b)) = 0. \end{cases} \end{equation}
My knowledge ends here, and I have little hope of finding the solution. Is there any way to solve it other than numerically?