I have a following task of determining whether this problem is well conditioned. I tried to solve it but I am stuck because I don't know how to understand the last step.
Is a problem of calculating the root of the polynomial $p(x) = ax + b$ well conditioned for variables $a,x$ and $b$?
Here is my attempt:
I calculate maximal relative error of result, denoted with $U(a,x,b)$ where $a,x,b$ are arguments with a relative error not greater than arithmetic precision denoted by $\nu$. Here is equation with distorted data for relative error: $$\frac{|a(1+\epsilon_1)x(1+\epsilon_2) + b(1+\epsilon_3) - ax - b|}{|ax + b|} = U(a,x,b)$$ And
$$\sup_{|\epsilon|\leq \nu}U(a,x,b) =\frac{|ax(2 \nu + \nu^2)+ b\nu|}{|ax + b|} $$ $$cond(a,x,b)=\frac{U(a,x,b)}{\nu} = \frac{|ax(2+\nu) + b|}{|ax + b|}$$
How this translates to statement that problem is well defined or not? I don't specifically understand this step.