The iteration as given to me is this:
$x_{n+1}=F(x_n)=sin(x_n), x_0=1$
so I think that the start of the iteration would look something like this:
$x_0=1$
$x_1=sin(1)=.841$
$x_2=sin(sin(1))=sin(.841)=.7456$ and so on.
My professor said this iteration converges, but how do we know that? The only test for convergence I could find in my notes is that the iteration will converge if $|g'(a)|<1$. In this problem, is $g(x_n)=sin(x_n)$ since $g(x_n)=x_{n+1}$? Or is $g(x)=1-sin(x)/cos(x)$?
Also, what is the limit of this iteration, and how fast is the convergence?