Consider Newton's method for finding the root of f(x) = x-sin(x). Run it on Matlab to find what is the rate of convergence. What is the value $\lambda$ such that $|x_{n+1} - \alpha| = \lambda|x_n - \alpha|$ where $\alpha$ is the root. Find the multiplicity m of this root $\alpha$.
Using Newton's method for finding roots (octave) I have found that this f(x) converges at 2.0236e-08, and it does so in close to 50 iterations. My code is as follows $x = x - ((x-\sin(x))/(1-\cos(x)))$
How do I go about solving for $\lambda$ and the multiplicity of m?
Thanks for your time!