I am trying to apply Newton's method for $f(x)=\arctan (x)$. There is already a post showing how to solve this:
As $g(x)$ is an odd function, if $x_0$ is a root, then $x_1=-x_0$ is a root as well.
The periodic sequence is
$(x_n)=x_0,-x_0,x_0,\ldots$
Apply Newton method to find the root of $f(x)=\arctan x$
$x_1=x_{0}-\frac{f(x_{0})}{f'(x_{0})}= -x_0$
$x_1=-x_0$ so we get
$-x_0=x_0-\frac{\arctan x_0}{\frac{1}{x_0^2+1}}$
expand
$2 x_0=\left(x_0^2+1\right) \arctan x_0$
Which proves that $\pm x_0$ are roots of $g(x)=\frac{2x}{x^2+1}-\arctan x$
$x_0\approx 1.39175$
My question is, what happens if we apply Newton’s method for the same problem with initial guesses $x_{0}+\epsilon$ and $x_{0}-\epsilon$?