Disclaimer: I'm aware that this topic is very well documented, and I've done considerable research before asking the MST community, but most of the documentation on this topic is highly formal, and I do not have a very good grasp of formal mathematics
1.) Use three iterations of Newton's Method to approximate a zero of f(x) = x$^2$-2. Use x = 1 as the initial guess.
Here are my answer:
x1 = 1.5
x2 = 1.416666667
x3 = 1.414215686
What I don't understand is how to find the multiplicity and rate of convergence.
I'm aware that formula for multiplicity is $m = (m-1)/m$.
And the formula for rates of convergence is ($x_n-x_{n-1})/(x_{n-1}-x_{n-2})$.
But I don't know how to apply either of these formulas. Thank you for any assistance.