19

Playing around with the incomplete/finite exponential series

$$f_N(x) := \sum_{k=0}^N \frac{z^k}{k!} \stackrel{N\to\infty}\longrightarrow e^z$$

for some values on alpha (e.g. solve sum_(k=0)^19 z^k/(k!) = 0 for z), I made a few observations:

  • The sum of the roots of $f_N$ are $-N$
  • The product of the roots of $f_N$ are $(-1)^N\cdot N!$
  • Their imaginary part seems to lie between $\pm10$
  • The zeros seem to form an interesting shape:


Patterns for $N=17, 18, 19$

Now the sum and product part are clear, since

$$\begin{align} f_N(x) &= \frac1{N!}\left(z^N + N z^{N-1} + N(N-1)z^{N-2} + ... + N!\right) \\ &= \frac1{N!}(z-z_{N0})(z-z_{N1})\cdots(z-z_{NN}) \\ &= \frac1{N!}\left(z^N - \left(\sum_{k=0}^Nz_{Nk}\right) z^{N-1} + ... + (-1)^N\prod_{k=0}^N z_{NK}\right) \end{align}$$

and since $e^z=0 \Leftarrow \Re z\to-\infty$ it is clear that the roots tend towards real parts with negative infinity, but I'm still intrigued by the questions

what ($N$-dependent) curve do the zeros of $f_N(z)$ lie on, does that curve maintain its shape for varying $N$ and merely translate or also deform; and what other properties of the zeros (e.g. absolute value) can be derived?

2 Answers2

8

The zeros of the scaled functions $f_N(Nz)$ do converge to an airfoil-like curve. See an animation here.

See also these:

lhf
  • 216,483
  • Awesome links, thanks! – Tobias Kienzler Oct 22 '13 at 16:55
  • Perhaps an interesting relation: there is a proposition of a function as 2-fold iteration $f_c(z)=c^z \text{ with } c,z \in \mathbb C$ and a method to find periodic-points $f^{o2}_c(z)=z$ with a function called "HyperW()" or $HW()$ in an article as a generalization of the Lambert-W. The method to actually approximate periodic points means to solve the *truncated* taylor-series of $f^{o2}_c(z)$ . This is a strong relation to the subject here. I've done some investigation. See question https://math.stackexchange.com/q/3706909 and one answer https://math.stackexchange.com/a/3713978 . – Gottfried Helms Jun 11 '20 at 10:03
3

One more picture; here I rescale the radial distances from the origin to their logarithm; the roots of the polynomials $f_{16},f_{32},f_{64},f_{128}$ are shown, the magenta line is that for $f_{16}$. I find it interesting, that the radial positions fit nicely together, see the straight lines from the origin (the roots do not exactly match with the lines but remarkably good)

enter image description here

  • So in other words, you plot on a log-log scale, right? Wow, that's an interesting observation! Also interesting: The amount of roots between two such lines appears to be of the form $2^n-1$ – Tobias Kienzler Oct 30 '13 at 08:49
  • Well, that's not quite the correct transformation. In fact, if I do separately rescale the x-axis and the y-axis, then the curves approximate squares (you might try this using an asinh-scaling instead, which becomes quite similar to a log-log-scaling for values >1). No, here I compute the polar coordinates of the roots, rescale the distance to the origin $\sqrt{\Re(\rho)^2+\Im(\rho)^2}= |\rho| $ by logarithmizing and recalc the rectangular coordinates from that. – Gottfried Helms Oct 30 '13 at 09:10
  • @tobias:the number of roots between two such lines plus that on one line is just 2^ because the number of complex roots is just doubling with each step. – Gottfried Helms Oct 30 '13 at 09:14
  • Ah true, it's too early in the morning... I wonder if the roots really don't lie exactly on these line or whether that's numerical accuracy... Also, the real roots seem to be very regularly spaced – Tobias Kienzler Oct 30 '13 at 09:22
  • @Tobias: Yepp. Do you have Pari/GP? It was no problem to get the 128 roots by the simple call
     polroots(Pol(exp(x) + O( x^2^7)))) 
    in just a second.(One should increase the default powerseries precision and the computing precision sufficiently high)
    – Gottfried Helms Oct 30 '13 at 09:37
  • I'm usually using Python or Wolfram Alpha, but I'll have a look at it, thanks! – Tobias Kienzler Oct 30 '13 at 09:43