Consider the problem of minimizing $f : \mathbb{R} \to \mathbb{R}$ be given by $f(x) = x^{4/3}$ . Note that $0$ is the global minimizer of $f$ . (a) Write down the iterations for Newton’s method for this problem. (b) Show that, as long as the initial approximation $x(0)$ is NOT equal to $0$, the algorithm in part (a) does not converge to $0$ (no matter how close to $0$ we start).
So I know Newton's method looks like this: $x(k+1)=x(k) -\dfrac{ f(x(k))}{f'(x(k))}=x(k)-\dfrac{x^{4/3}}{4/3\times x^{1/4}}.$ But I don't know how many iterations there are supposed to be, or what I should choose as my initial approximation, and I don't know how to prove it doesn't converge to $0$. Any help is much appreciated, thanks!