2.2 Flashcards
What is a fixed point for a function?
A number p such that f(p) = p
What is the relationship between roots and finding fixed points?
- Given the root finding problem f(p) = 0, the fixed point problem is g(x) = x + f(x)
- Given the fixed point problem g(p) = p, the root finding problem is f(x) = g(x) + x
What are some equivalent fixed point problems to the root finding problem x^4 -x -10 = 0
g(x) = x^4 -10 = (x + 10)^(1/4) = 10/(x^3-1) = ((10 + x)/x)^(1/3) = (x + 10)^(1/2)/x^2
just make p = g(x)
What is a fixed point iteration?
The sequence {pn} from n=0 to inf where pn = g(p(n-1))
How do you know which fixed point function to choose in order to maximize the rate of convergence?
Maximize the fixed point functions and the one with the lowest max will converge the quickest
When g(x) has a _______ slope, it converges quicker
smaller
The fixed point iteration has _______ order of convergence
linear. However, when k < 1/2, the fixed point iteration converges faster than the bisection algorithm