2.2 Flashcards

1
Q

What is a fixed point for a function?

A

A number p such that f(p) = p

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
2
Q

What is the relationship between roots and finding fixed points?

A
  1. Given the root finding problem f(p) = 0, the fixed point problem is g(x) = x + f(x)
  2. Given the fixed point problem g(p) = p, the root finding problem is f(x) = g(x) + x
How well did you know this?
1
Not at all
2
3
4
5
Perfectly
3
Q

What are some equivalent fixed point problems to the root finding problem x^4 -x -10 = 0

A
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)

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
4
Q

What is a fixed point iteration?

A

The sequence {pn} from n=0 to inf where pn = g(p(n-1))

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
5
Q

How do you know which fixed point function to choose in order to maximize the rate of convergence?

A

Maximize the fixed point functions and the one with the lowest max will converge the quickest

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
6
Q

When g(x) has a _______ slope, it converges quicker

A

smaller

How well did you know this?
1
Not at all
2
3
4
5
Perfectly
7
Q

The fixed point iteration has _______ order of convergence

A

linear. However, when k < 1/2, the fixed point iteration converges faster than the bisection algorithm

How well did you know this?
1
Not at all
2
3
4
5
Perfectly