Is ParametricPlot3D the best way to plot complex functions to find solutions?
The algebra for $e^z = 2 i$ tells me that there are infinite solutions at $\frac{\pi}{2} + 2 n \pi$ for all $n \in \mathbb{N}$.
So I do this
three = ParametricPlot3D[{z, Re[E^z], Im[E^z]}, {z, -5, 5}, PlotStyle -> {{Red}}];
four = ParametricPlot3D[{z, Re[2 I], Im[2 I]}, {z, -5, 5}, PlotStyle -> {{Blue}}];
Show[three, four]
and get
What happened to the $2i$? I'm expecting to see two lines that periodically intersect.
Should I not be using ParametricPlot3D at all?



Show[three, four, PlotRange -> All, BoxRatios -> {1, 1, 1}]– Bob Hanlon Nov 14 '15 at 15:00zwhen the solutions are imaginary:Log[2] I (Pi / 2 + 2 Pi n)– LLlAMnYP Nov 14 '15 at 15:06