I've a couple of functions, such as:
- $Y(t+1)=2-\ln(Y(t))$
- $Y(t+1)=(Y(t))^{-2}$
- $Y(t+2)=e^{-Y(t)}$
and I need to analyze stability and convergence. No problem with stability, but I can't figure out convergence.
I read that if the absolute value of:
$$\frac{dY(t+1)}{dY(t) }$$ is less than 1, it's convergent, and if it's greater it's divergent. Is that correct?
Could you please use some of my examples to explain how/why it´s right or not?
Thanks!
If I understand correctly, you are iterating a function such as $f(y)=2-\ln y$, $f(y)=y^{-2}$, or $f(y)=e^{-y}$. If the result of iteration converges, its limit is a fixed point of $f$, that is a solution of $f(y)=y$. A fixed point $y_*$ is classified as
Iteration can never converge to a repelling fixed point, unless it jumps directly onto it. It will converge to an attracting fixed point provided it gets into a neighborhood of the point where $|f'|<1$.
For example, $f(y)=2-\ln y$ has one fixed point, which is attracting. So, the iteration converges there provided it starts in the vicinity of the fixed point, or gets there in the process. But this depends on the initial value. If you start with $Y(0)=0.001$, then $Y(1)\approx 8.9$ and $Y(2)<0$, hence $Y(3)$ is undefined. If you start with $Y(0)=0.01$, the iteration converges to fixed point.