

Study with the several resources on Docsity
Earn points by helping other students or get them with a premium plan
Prepare for your exams
Study with the several resources on Docsity
Earn points to download
Earn points by helping other students or get them with a premium plan
Community
Ask the community for help and clear up your study doubts
Discover the best universities in your country according to Docsity users
Free resources
Download our free guides on studying techniques, anxiety management strategies, and thesis advice from Docsity tutors
Various root-finding algorithms, including the bisection method, fixed-point iteration, and newton-raphson method. The bisection method is a numerical technique for finding the root of a function using the intermediate value theorem. Fixed-point iteration is a method for finding the fixed point of a function, which is a solution to the equation g(x) = x. The newton-raphson method is a powerful root-finding algorithm that uses taylor series approximation to find the root of a function. Examples and theorems to illustrate the concepts.
Typology: Study notes
1 / 3
This page cannot be seen from the preview
Don't miss anything!
Lecture 10 Sept. 22, 2006 Root-finding
1
Root finding algorithms
2
The bisection method
Fixed-point iteration
Example 1
g(x) =
x^2 − 1 3
on [− 1 , 1]
Example 2
g(x) = 3−x^ on [0, 1]
5
Fixed-point iteration
Example
x^3 + 4x^2 − 10 = 0 has unique root in [1, 2].
6
Fixed-Point Theorem
The Newton-Raphson Method
f (x) = f (x 0 ) + (x − x 0 )f ′(x 0 ) +
(x − x 0 )^2 2
f ′′(ξ(x))
where ξ(x) is between x and x 0.
0 = f (x 0 ) + (p − x 0 )f ′(x 0 ) +
(p − x 0 )^2 2
f ′′(ξ(x))
p ' x 0 −
f (x 0 ) f ′(x 0 )