Please enable JavaScript.
Coggle requires JavaScript to display documents.
CSC336 (Interpolation(Polynomial) (Different Bases for polynomial…
CSC336
-
-
-
Non-linear equations (f(x): original function to solve, g(x): equivalent fixed-point function of f(x))
1D
fixed-point iteration
-
Theorem 5: existence of fixed point + contraction mapping IMPLIES guaranteed convergence of g(x) in I (method of finding unknown?)
-
Newton's method
-
-
converges very slowly at a root with multiplicity > 1 (since any root with multiplicity higher than 1 has like, two sides both approach 0 so the expression overall gets reduced slower as it approaches the root. converges with linear order/rate with k=1-1/m
-
secant: basically Newton's method with derivative substituted by secant line of two points(Newton + bisection
-
-
-
-
-