Suppose a matrix $A=\begin{pmatrix} a & b \\ a & 0 \end{pmatrix}$. I need to calculate $\lim_{n\to\infty}A^n$, so I started doing literally power by power to see a pattern, and this pattern emerges:
$$A^{n+1}=\begin{pmatrix} (A^n_{1,1}+A^n_{1,2})a & A^n_{1,1}b \\ (A^n_{2,1}+A^n_{2,2})a & A^n_{2,1}b \end{pmatrix}$$
At $n=\infty$ supposedly $n=n+1$ so I define $\begin{pmatrix} x & y \\ z & t \end{pmatrix}$ as $A^n=A^{n+1}$
so we have that
$$ \begin{pmatrix} x & y \\ z & t \end{pmatrix}= \begin{pmatrix} (x+y)a & xb \\ (z+t)a & zb \end{pmatrix} $$
or
$$ \left\{ \begin{aligned} (x+y)a &= x\\ xb&=y \\ (z+t)a &= z \\ zb&=t \end{aligned} \right. $$
simplifying we get to
$$ \left\{ \begin{aligned} b+1&=\frac 1a\\ ab+a&=1 \end{aligned} \right. $$
Isolating $b$ in the first we have that $b=\frac 1a-1$; substituting on the second:
\begin{align} a(1/a-1)+a&=1 \\ 1-a+a=1 \\ 1=1 \end{align}
The problem is I don't understand the result. Does this mean that $\lim_{n\to\infty}A^n$ is defined no matter what values $a$ and $b$ we have? What does it mean?