I am currently tightening floating-point numerics for an estimate of a value. (It's: p(k,t) for those who are interested.) Essentially, the utility can never yield an under-estimate of this value: the security of probable prime generation depends on a numerically robust implementation. While output results agree with the published values, I have used the DBL_EPSILON value to ensure that division, in particular, yields a result that is never less than the true value:
Consider: double x, y; /* assigned some values... */
The evaluation: r = x / y; occurs frequently, but these (finite precision) results may truncate significant digits from the true result - a possibly infinite precision rational expansion. I currently try to mitigate this by applying a bias to the numerator, i.e.,
r = ((1.0 + DBL_EPSILON) * x) / y;
If you know anything about this subject, p(k,t) is typically much smaller than most estimates - but it's simply not good enough to dismiss the issue with this "observation". I can of course state:
(((1.0 + DBL_EPSILON) * x) / y) >= (x / y)
Of course, I need to ensure that the 'biased' result is greater than, or equal to, the 'exact' value. While I am certain it has to do with manipulating or scaling DBL_EPSILON, I obviously want the 'biased' result to exceed the 'exact' result by a minimum - demonstrable under IEEE-754 arithmetic assumptions.
Yes, I've looked though Goldberg's paper, and I've searched for a robust solution. Please don't suggest manipulation of rounding modes. Ideally, I'm after an answer by someone with a very good grasp on floating-point theorems, or knows of a very well illustrated example.
EDIT: To clarify, (((1.0 + DBL_EPSILON) * x) / y) or a form (((1.0 + c) * x) / y), is not a prerequisite. This was simply an approach I was using as 'probably good enough', without having provided a solid basis for it. I can state that the numerator and denominator will not be special values: NaNs, Infs, etc., nor will the denominator be zero.
kthat ensures that(((1.0 + k) * x) / y) - (x / y) >= thresholdin double-precision arithmetic? That doesn't sound right, so I guess I haven't grasped your question.. – Oli Charlesworth May 10 '12 at 9:29kand an operationfsuch that performing the operation:f(x,y,k)using double-precision arithmetic is as close as possible to the 'exact' (infinite precision) value ofx/ywithout being lower than it. Currently,fhappens to be((1.0 + k) * x) / y, andkhappens to be DBL_EPSILON, but he hopes for a tighter bound than this. – ArjunShankar May 10 '12 at 9:37x/y, and then perform the upwards rounding? – Oli Charlesworth May 10 '12 at 10:18_controlfp_sor__asm fldcwor_FPU_SETCW? Isn't that what it is for? – Ben May 10 '12 at 10:57