Distribution of zeros of partial Taylor series of $e^{z^2}$

142 Views Asked by At

I'm trying to experiment with zeros of the $e^{z^2}$ function ( also $ ch(z)$ and $\xi(1/2+z)$) For $e^{z^2}$ Taylor series about $z=0$, we have:

$$ e^{z^2}=\sum_{m=0}^{\infty} \frac {z^{2m}}{m!}$$

Below are the pictures of location of zeros on the complex plane for four partial sums $S_{2M}=\sum_{m=0}^{2M} \frac {z^{2m}}{m!}$ for $2M=38, 50, 54, 74$:

My question: Is the observed complex behavior — splitting in the region of the complex axis an artifact (possible errors in calculating the roots, i.e., flaws in numerical calculations) or is this the real behavior of zeros with increasing $M$?

1

There are 1 best solutions below

1
On BEST ANSWER

Using a CAS like Magma, one can construct the partial sums in one line.

PS<x>:=PowerSeriesRing(Rationals());
Truncate( Exp(x^2+O(x^81)) );

Inserting this into the cited web tool results in the root graph

enter image description here

This is what one expects from the square root of the Szegő curve $|ze^{1-z}|=1$ inside the disk $|z|<1$, see derivation and visualization. The roots of $s_n(nz)$, where $s_n$ is the partial exponential sum, converge towards this curve, and thus the roots of the given polynomials $s_{2M}(z^2)$ towards its square root, scaled by $\sqrt{2M}$.

How did the split of the curve happen? Depending on how the web tool reads its input, there could be errors in reading integers or some other strange happening, as making the coefficients integer via

Truncate( Factorial(40)*Exp(x^2+O(x^81)) );

results in a root plot

enter image description here

It is unclear how $x=\pm 0.5$ could be detected as roots, as all coefficients are positive.

To get a pattern similar to the one you observed, I have to reduce the relative accuracy of the floating-point coefficients to 8 digits

PS<x>:=PowerSeriesRing(RealField(8)); 
Truncate( Exp(x^2+O(x^(81))) );                  

to get then a slightly larger split

enter image description here

While the root set is continuous as set under changes of the polynomial coefficients, multiple roots or patterns close to that, that is, root cluster, will change especially rapidly. While there are directions that move a cluster towards joining roots, these are sparse. Random changes in the coefficients will expand the cluster, as observed in this graph.