I'm reviewing linear algebra topics after quite a few years and I'm struggling with this apparently very simple exercise.
Let $A$ be an $n \times n$ matrix.
a. What does it mean to say that $$\lim_{B \to A} {(A - B)}^{-1} (A^2 - B^2)\qquad\text{exists?}$$
b. Does the limit exist when $A = \begin{bmatrix}1 & 0\\0 & 1\end{bmatrix}$?
c. When $A = \begin{bmatrix}0 & 1\\1 & 0\end{bmatrix}$?
a. It means that
the expression is well-defined and there's a neighborhood $U$ around $A$ such that if $B \in U$ then $A - B$ is invertible, and;
that there exists a matrix $M$ such that, for all $\varepsilon > 0$, there exists a $\delta > 0$ such that $|B - A| < \delta$ implies $|{(A - B)}^{-1} (A^2 - B^2) - M| < \varepsilon$, where $|\cdot|$ is the Frobenius norm.
b. In this case $A$ is invertible as $\det A = 1$ and since the determinant is continuous there's a neighborhood around $A$ that contains matrices $B$ so that $A - B$ has a non-zero determinant as well. This should allow us to approach $A$ with a sequence of matrices $B_n$ so that $A - B_n$ is invertible and the limit makes sense.
c. This case seems the same as the previous one. The only difference I see is that for the first matrix, $A^2 = A$, whereas in this case that isn't true. But I don't understand how that has any relevance.
Since I wasn't able to conclude whether the limit exists or not in either case, I tried to evaluate it for the general case. Let $B_n = A - n^{-1} I \to A$ as $n \to \infty$. This sequence belongs to a subset of a neighborhood of $A$ and $A - B_n$ is invertible for $n > 1$. Then we have $${(A - B_n)}^{-1} (A^2 - B_n^2) = nI\left[A^2 - {(A - n^{-1} I)}^2\right] = 2A - n^{-1}I \to 2A$$
This result at least shows that the limit could equal $2A$. But the sequence $B_n$ is only one possible way to approach $A$. We need to show that such a result is independent of how we approach the limit point $A$. In general, we have $B = A - H$, where $|H|$ gets arbitrarily small (say $|H| < \delta$). Then: $${(A - B)}^{-1} (A^2 - B^2) = H^{-1}\left[A^2 - {(A - H)}^2\right] = H^{-1}AH + A - H$$
Now, to prove that the limit is indeed $2A$, we need to bound the following expression with another one that depends on $\delta$ and not on $H$:
$$\begin{split} |H^{-1}AH + A - H - 2A| &= |H^{-1}AH - A - H| \leq\\ &\leq |H^{-1}AH - A| + |H| \leq\\ &\leq |H^{-1}AH - A| + \delta \end{split}$$
And here I don't know how to continue.
Questions:
- What is the difference between points b and c of the exercise? I could not understand.
- Is it possible to complete the $\varepsilon-\delta$ proof that the limit is $2A$, or is the above completely wrong?