|
|
|
|
|
by dmlorenzetti
4247 days ago
|
|
The first thing you should worry about is whether your computation is ill-conditioned, and only then worry whether it's numerically stable. OK, but how does one apply this advice in practice? The radiative exchange between two surfaces goes as x^4-y^4 where x and y are the surface temperatures. I can worry about whether that's ill-conditioned all I want, but at the end of the day I'm further ahead evaluating (x-y)(x+y)(x^2+y^2) than the original expression. Similarly, if I need to find x^2-1, what recourse do I have? Maybe there's some reduction that makes the computation more stable. But normally I would expect to discover such a reduction by turning x^2-1 into (x-1)(x+1), and then seeing if one of those factors cancels out somewhere. So it still seems like a good first step. |
|