0

$g(x) = \frac{x^2}{3}$

$P=3$

$p_0 = 3.5$

1) Graph $g(x)$, the line $y=x$, and the fixed point $P$ (done)

2) Using the given starting value $p_0$, compute $p_1$ and $p_2$ (the answer might be $p_1 = 4.083333,p_2 = 5.537869$)

Determine geometrically if fixed point iteration converges (answer: diverges)

We might decide this using the analogical graphing structure:

enter image description here

Please, help!

John Lennon
  • 1,302

2 Answers2

3

Writing $g(x)=x\cdot \frac{x}{3}$, we see that if $x>3$ then $g(x)>x$ and if $0\leq x<3$, then $g(x)<x$. So what we see is that, unless $p_0=3$, $g(p_0),g(g(p_0)),...$ is going to get steadily further away from $3$.

Thomas Andrews
  • 177,126
2

Your graph should look like something like this:

enter image description here

If $p_0$ is a bit to the right of the fixed point $p=3$, we have $p_1 = g(p_0) > p_0$, so the iteration takes you farther away from the fixed point, and it diverges. Similarly if $p_0$ was a bit to the left of the fixed point $p=3$, you'd have $p_1 = g(p_0) < p_0$. In that case it would converge to the other other fixed point $0$.

Robert Israel
  • 448,999