vote up 9 vote down star
1

I recently discovered that x**.5 and math.sqrt(x) do not always produce the same result in Python:

Python 2.6.1 (r261:67517, Dec 4 2008, 16:51:00) [MSC v.1500 32 bit (Intel)]
on win32
>>> 8885558**.5 - math.sqrt(8885558)
-4.5474735088646412e-13

Checking all integers below 10**7 produced an error rate of almost exactly 0.1%, with the size of the error increasing (slowly) for larger numbers.

So the question is, which method is more accurate?

Edit: For the record, this isn't current causing me issues, nor do I know of a case where it might. But it's a slow Friday afternoon, so I ask out of curiosity and in the name of best practices. :-)

flag

Can you explain what you mean by "error rate"? – Greg Hewgill May 8 at 23:41
The two methods of calculating a square root do not produce identical results for 10,103 numbers below 10**7. (Or about 0.1%) – Ben Blank May 8 at 23:45
2  
I see, that's what I suspected you might have meant. You will probably find that when there is a difference between the two calculation methods, the difference will be in the least significant one or possibly two bits of the floating point representation. This is considered normal and is a consequence of the different algorithms used to compute the results. – Greg Hewgill May 8 at 23:59
2  
Reading through the answers so far, nobody has talked about the actual algorithm being implemented for each. If anyone knows I'd be interested to read about them. – saffsd May 9 at 0:54
1  
@saffsd, it is likely they both use a convergent iterative series like Newton's method. If they pick different starting points, one left of the x-intercept, one to the right of the x-intercept, then that may explain the difference. – Unknown May 12 at 21:11

9 Answers

vote up 11 vote down check

Neither one is more accurate, they both diverge from the actual answer in equal parts:

>>> (8885558**0.5)**2
8885557.9999999981
>>> sqrt(8885558)**2
8885558.0000000019

>>> 2**1023.99999999999
1.7976931348498497e+308

>>> (sqrt(2**1023.99999999999))**2
1.7976931348498495e+308
>>> ((2**1023.99999999999)**0.5)**2
1.7976931348498499e+308

>>> ((2**1023.99999999999)**0.5)**2 - 2**1023.99999999999
1.9958403095347198e+292
>>> (sqrt(2**1023.99999999999))**2 - 2**1023.99999999999
-1.9958403095347198e+292

http://mail.python.org/pipermail/python-list/2003-November/238546.html

The math module wraps the platform C library math functions of the same names; math.pow() is most useful if you need (or just want) high compatibility with C extensions calling C's pow().

__builtin__.pow() is the implementation of Python's infix ** operator, and deals with complex numbers, unbounded integer powers, and modular exponentiation too (the C pow() doesn't handle any of those).

** is more complete. math.sqrt is probably just the C implementation of sqrt which is probably related to pow.

link|flag
+1 for link to authoritative source :) – Van Gale May 9 at 1:13
vote up 7 vote down

Both the pow function and the math.sqrt() function can calculate results that are more accurate than what the default float type can store. I think the errors you're seeing is a result of the limitations of floating point math rather than inaccuracies of the functions. Also, since when is a difference of ~10^(-13) a problem when taking the square root of a 7 digit number? Even the most accurate physics calculations seldom requires that many significant digits...

Another reason to use math.sqrt() is that it's easier to read and understand, which generally is a good reason to do things a certain way.

link|flag
The answer to this question would seem to contradict your comment about speed: stackoverflow.com/questions/327002/… – Ben Blank May 8 at 23:43
A friend of mine actually benchmarked this earlier today, and concluded that math.sqrt() was faster. This was in the context of a project euler calculation. I trusted his word without checking his method, so that assertion might be incorrect. Still, it seems wildly unlikely that math.sqrt() would be slower. If that was the case, why didn't they simply implement it in turns of pow()? – Emil H May 8 at 23:49
"in terms of pow()"... I'm a bit tired. :) – Emil H May 8 at 23:51
1  
I'll admit that I don't have a case on-hand where that level of accuracy is significant — I'm thinking more in terms of best practices. My main concern, actually, is Project Euler and the increasingly-large numbers which it's throwing at me. ;-) – Ben Blank May 9 at 0:08
1  
That's a great reason. PE is totally addictive. :D Take a look at decimal: docs.python.org/library/decimal.html It provides all the accuracy you'll ever need. – Emil H May 9 at 0:12
show 3 more comments
vote up 4 vote down

Use decimal to find more precise square roots:

>>> import decimal
>>> decimal.getcontext().prec = 60
>>> decimal.Decimal(8885558).sqrt()
Decimal("2980.86531061032678789963529280900544861029083861907705317042")
link|flag
vote up 3 vote down

I got the same issue with you on Win XP Python 2.5.1, while I don't on 32-bit Gentoo Python 2.5.4. It's a matter of C library implementation.

Now, on Win, math.sqrt(8885558)**2 gives 8885558.0000000019, while (8885558**.5)**2 gives 8885557.9999999981, which seem to amount to the same epsilon.

I say that one cannot really say which one is the "better" option.

link|flag
vote up 2 vote down

Any time you are given a choice between two functions which are built into a language, the more specific function will almost always be equal to or better than the generic one (since if it was worse, the coders would've just implemented it in terms of the generic function). Sqrt is more specific than generic exponentiation so you can expect it's a better choice. And it is, at least in terms of speed. In terms of accuracy, you aren't dealing with enough precision in your numbers to be able to tell.

Note: To clarify, sqrt is faster in Python 3.0. It's slower in older versions of Python. See J.F. Sebastians measurements at http://stackoverflow.com/questions/327002/python-which-is-faster-x-5-or-math-sqrtx .

link|flag
Can you clarify that last sentence for me? – Ben Blank May 8 at 23:47
Your point about speed is incorrect. **0.5 is actually faster than sqrt. – Unknown May 9 at 2:27
Not in Python 3.0. – Brian May 9 at 20:14
vote up 1 vote down

I don't get the same behavior. Perhaps the error is platform specific? On amd64 I get this:

Python 2.5.2 (r252:60911, Mar 10 2008, 15:14:55) 
[GCC 3.3.5 (propolice)] on openbsd4
Type "help", "copyright", "credits" or "license" for more information.
>>> import math
>>> math.sqrt(8885558) - (8885558**.5)
0.0
>>> (8885558**.5) - math.sqrt(8885558)
0.0
link|flag
I was afraid that might be the case — I read somewhere that math.sqrt is passed directly to the C implementation, but I can't find the reference right now. – Ben Blank May 8 at 23:50
I can confirm the result. – David May 9 at 0:03
Ben: I can't find it documented, but it's true for Python 2.5 at least: tinyurl.com/omvudo – Ken May 13 at 20:31
vote up 1 vote down

This has to be some kind of platform-specific thing because I get different results:

Python 2.5.1 (r251:54863, Jan 13 2009, 10:26:13) 
[GCC 4.0.1 (Apple Inc. build 5465)] on darwin
>>> 8885558**.5 - math.sqrt(8885558)
0.0

What version of python are you using and what OS?

My guess is that it has something to do with promotion and casting. In other words, since you're doing 8885558**.5, 8885558 has to be promoted to a float. All this is handled differently depending on the operating system, processor, and version of Python. Welcome to the wonderful world of floating point arithmetic. :-)

link|flag
"Python 2.6.1 (r261:67517, Dec 4 2008, 16:51:00) [MSC v.1500 32 bit (Intel)] on win32" – Ben Blank May 8 at 23:52
Interesting. Perhaps it's a 32 bit vs 64 bit issue of some kind? Me and the other person who got different results are both using a 64-bit OS. Or it could be a BSD thing. I'm using Mac OS X. – Jason Baker May 9 at 0:00
I get 0.0 on 32-bit Linux as well (Python 2.5.2). – David May 9 at 0:09
vote up 0 vote down

If you've already tested all the integers below 10**7, why don't you tell us?

link|flag
1  
All I have are two sets of (disagreeing) answers. I don't know how to tell which one's correct. :-) – Ben Blank May 8 at 23:41
1  
Multiply the result by itself and see which is closer to the original number? – Ken May 8 at 23:42
1  
@Ken - it doesn't necessarily work that way. Floating point numbers can be tricky. – Jason Baker May 8 at 23:50
Amen to that! @Jason – SplittingField May 9 at 0:18
I know "floating point numbers can be tricky", but I'm not sure what specific problems you'd have here (other than corner cases like NaNs). That's how square root is defined, after all! – Ken May 13 at 20:23
vote up 0 vote down

In theory math.sqrt should have a higher precision then math.pow. See Newton's method to compute square roots [0]. However the limitation in the number of decimal digits of the python float (or the C double) will probably mask the difference.

[0] http://en.wikipedia.org/wiki/Integer_square_root

link|flag

Your Answer

Get an OpenID
or

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