1

Let $g(x)=x^2 \ln(x)$

We have the following equation $g(x)=a$ and let $\alpha(a)$ be the solution for $a>0$

Suppose $a>0$ and $1<\alpha(a)<1+a$.

Show that it converges, except for the first step, to $\alpha(a)$ while using Newton's method, used on $g-a$ started in $x_0=1$

1 Answers1

0

Let $\phi(x) = x - \frac{f(x)}{f'(x)}$ and let $\alpha$ be the root we are looking for. The following holds if $f'(\alpha)$ exists and is not equal to $0$ on some interval $I$ and if $f''(\alpha)$ is finite on the same interval $I$. Here $I$ could be something like $[\alpha - y, \alpha + y]$ with $y \geq |\alpha - x_0|$:

$$x_{i+1} - \alpha = \frac{f''(\alpha)}{2f'(\alpha)}(x_i - \alpha)^2$$

From this we can easily conclude that convergence is quadratic.

user47693
  • 405