I'm trying to check if the problem of calculating the sum of two numbers a and b is well conditioned, provided that |a| > 2|b|. In my solution i split it into cases:
1: a>0 and b>0,then
f(a,b)=a+b>3b
C(a,b)=Ca(a,b)+Cb(a,b)
where Ca(a,b)=|a(1)/(a+b)| and Cb(a,b)=|a(1)/(a+b)| then
C=|(a+b)/(a+b)|=1 so in this case problem is well conditioned
2: a>0 and b<0,then
f(a,b)=a+b<b
C(a,b)=Ca(a,b)+Cb(a,b)
where Ca(a,b)=|a(1)/(a+b)| and Cb(a,b)=|a(1)/(a+b)| then
C=|(a+b)/(a+b)|=1 so in this case problem is well conditioned
so it turns out that for each case it will be the same, but i have doubts that this is correct solution