For a given we denote the error $e_k = x_k - x^*$, and the convergence rate of the iterative scheme is $r$ so that
$$ \lim \frac{ ||e_{k+1} || }{ || e_k ||^r } = C $$
where $C$ is finite and positive.
Im trying to understand how to effectively use this definition. For example, take Newton;s method to find a root $f(x) = x$. The iteration is given by
$$ x_{k+1} = x_k - \frac{ f(x_k) }{f'(x_k) } $$
how can I compute the limit in this case?