I am dealing with a function $f(x)=e^{-\frac{1}{x^2}}$, which has a root $p$ of infinite multiplicity at 0. I am struggling with the convergence rate of the resulting standard Newton fixed point iterate: \begin{align*} x_{n+1}&=x_n-\frac{e^{-\frac{1}{x_n^2}}}{2x_n^{-3}e^{-\frac{1}{x_n^2}}}\\ g(x_n)&=x_n-\frac{x_n^3}{2} \end{align*} I believe this works as an iterate in theory. i.e. it maps $[-1,1]$ to a subset of $[-1,1]$ and I can show that basin of attraction is $|x|<2$. However, heuristically it seems that this should never converge, considering the "spider plot" of $y=x$ and $g(x)$. (I can't post the image because I don't have enough rep). Basically $g'(x)\approx1$ anywhere near $p$ and $g'(p)=1\nless 0$.
Let's assume we start at $x_0=1$. Can someone offer an argument for how long it will take to converge to within a tolerance $\delta$ or an argument as to why it won't converge?

It seems easier to understand the slow rate of convergence by transforming the process into an iteration on $y = 1/x$ and observing the divergence to infinity.
That is, with $y_n = 1/x_n$ the iteration can be rewritten as:
$$ y_{n+1} \gets y_n \left( 1 - \frac{1}{2y_n^2} \right)^{-1} = y_n\left( \frac{2y_n^2}{2y_n^2 - 1} \right) = y_n\left(1 + \frac{1}{2y_n^2 - 1}\right) = y_n + \frac{1}{2y_n - y_n^{-1}} $$
So for large $y_n$ we have $y_{n+1} - y_n \approx 0.5 y_n^{-1}$. One therefore expects that if $y$ were treated as a continuous function of index $n=t$, the behavior would be approximately that of the solution of differential equation:
$$ y'(t) = 0.5 y^{-1} $$
namely $y(t) = \sqrt{t + c}$.
On this basis we would predict that for $x = 1/y$ to reach $10^{-5}$ (equivalently, for $y$ to reach $10^5$) would require something like $10^{10}$ iterations.