Say we have two matrices, $A$ and $A'$ so that $A\approx A'$, and we have the inverse of $A$, $B$, where $AB=I$, and the inverse of $A'$ where $A'B'=I$. If we have some guarantee about how big any element in $A-A'$ is, is there some kind of guarantee that we can have on $B'-B$ so that we can say that $A'B\approx I$?
Update: the reason I want to do this is to see if there are any cases in linear regression where if you have some new training data, you won't have to invert the matrix again if your new data is very close to your old data.
Let the matrices satisfy $$ \|A-A'\|<\epsilon,\quad AB=BA=I,\quad A'B'=B'A'=I, $$ then $$0=BA-B'A' = B(A-A')+(B-B')A',$$so $$B-B' = B(A'-A)B',$$ or $$d = \|B-B'\|\le \epsilon \|B\|\|B'\|\le \epsilon \|B\|(\|B\|+d),$$ hence $$d\le \frac{\epsilon \|B\|^2}{1-\epsilon \|B\|}.$$
The only condition is that your matrix norm satisifies $\|CD\|\le \|C\|\|D\|$. This is true for many different matrix norms, choose whichever fits your needs best.