Let $A = \begin{bmatrix} 1 & -1 \\ 1 & -1.00001\end{bmatrix}$, give a posteriori extimate of the relative error in solving $Ax = b$, $||b||_2 = 1$.
To do this I was thinking of first finding the condition number of $A$ as follows. Letting $x = [\cos(\theta), \sin(\theta)]$ we are interested in the max to min ratio of the following quantity. \begin{align}\frac{||Ax||}{||x||}&=(\cos(\theta) - \sin(\theta))^2 + (\cos(\theta) -1.00001 \sin(\theta))^2\\ &= 2 - 4.00002\cos(\theta)\sin(\theta) + .0000200001\sin(\theta)^2\\ &\approx 2(1 - \sin(2\theta)) \end{align}
However, $\frac{\max 2(1 - \sin(2\theta))}{\min 2(1 - \sin(2\theta))}$ is $\infty$. Does this mean the desired estimate of the error is impossible?