Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am stuck with a computing question about an approximation error in double precision. The question asks for:

Suppose x and y can be represented without error in double precision. Can the same be said for x^2 and y^2? Which would be more accurate, x^2−y^2 or (x − y)(x + y)?

If x and y can be represented without any error, then x^2 and y^2 should not have any error. Is my assumption true

share|improve this question

closed as off topic by rene, Mario, Gajotres, t0mm13b, dreamcrash Jan 13 at 0:15

Questions on Stack Overflow are expected to relate to programming or software development within the scope defined in the FAQ. Consider editing the question or leaving comments for improvement if you believe the question can be reworded to fit within the scope. Read more about closed questions here.

1 Answer

Let's try your "lemma" with toy floats: 3 bits for mantissa, [whatever] bits for exponent.

x = 5 /* binary 101 */
=> x*x == 25 /* binary 11001 */

Obviously, we can't represent 11001 exactly if we have 3 bits for mantissa.

But it doesn't answer the main question about x^2−y^2 and (x − y)(x + y). Let's assume "rounding to nearest even" mode:

x = 6, y = 5
=> x*x == 36, rounded to 32 (even)
   y*y == 25, rounded to 24 (nearest)
   x*x-y*y == 8

   x+y == 11, rounded to 12 (even)
   x-y == 1, exact

   (x+y)*(x-y) == 12

Hence we have at least one example where (x+y)*(x-y) is more accurate. (It doesn't automatically mean that the reverse is impossible, though).

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.