Newton's method for $\frac1{\sqrt{a}}$ proceeds by iterating minimizing $\frac1{x^2}-a$.
Why cant I do $\frac{x-ax^3}2$?
Infact why cant I replace $2$ by any $k\in\Bbb R_{>0}$?
Newton's method for $\frac1{\sqrt{a}}$ proceeds by iterating minimizing $\frac1{x^2}-a$.
Why cant I do $\frac{x-ax^3}2$?
Infact why cant I replace $2$ by any $k\in\Bbb R_{>0}$?
Using $f(x)=x^d-ax^{2+d}$ the Newton method iterates $$ x_{\it next} = x - \frac{x^d-ax^{2+d}}{dx^{d-1}-(d+2)ax^{d+1}} =x·\frac{(d+1)ax^2-(d-1)}{(d+2)ax^2-d} $$ where for $d=0$, $d=-2$ and $d=-\frac12$ you will rediscover some well-known methods for square root approximation.