I am interested in the complex function
$f(z)=\frac{1}{a}\log\left[2\sinh(a\sqrt{z})\right]$.
where $a > 0$ is a real parameter. Clearly for large $a$ this approaches $f(z) \to \sqrt{z}$.
But Mathematica suggests otherwise. On the real axis the function approaches the correct limit but in the complex plane the function is plagued by discontinuities as $a$ becomes large.
a = 0.9;
Plot[{Log[2 Sinh[a Sqrt[z]]]/a, Sqrt[z]}, {z, 0, 10}, PlotRange -> {0, 5}]
Plot3D[Im[Sqrt[x + I y]], {x, -100, 100}, {y, -100, 100}]
Plot3D[Im[Log[2 Sinh[a Sqrt[x + I y]]]/a], {x, -100, 100}, {y, -100, 100}]
Is there any known way to overcome this problem in Mathematica?
Thanks in advance.
Im[Log[2 Sinh[a Sqrt[z]]]/a]andIm[Log[2 Sinh[-a Sqrt[z]]]/a]together... – J. M.♦ Nov 17 '12 at 18:46f[a_] := Log[2 Sinh[1/a]] a; With[{z = 1/4}, ContourPlot[Abs[f[x + I y]], {x, -z, z}, {y, -z, z}, PlotPoints -> 50]]. (ReplaceAbsbyArgto see the argument of $f$.) – whuber Nov 18 '12 at 22:56