This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

Author tim.peters
Recipients Aaron.Meurer, Nofar Schnider, abarry, benjamin.peterson, eric.araujo, georg.brandl, gvanrossum, lisroach, mark.dickinson, ncoghlan, pitrou, python-dev, rhettinger, sbaird, serhiy.storchaka, skrah, stutzbach, tim.peters, veky, vstinner, waldir, zach.ware
Date 2016-08-12.18:45:39
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <1471027539.93.0.928683621372.issue12345@psf.upfronthosting.co.za>
In-reply-to
Content
Serhiy's objection is a little subtler than that.  The Python expression `math.log(math.e)` in fact yields exactly 1.0, so IF it were the case that x**y were implemented as

math.exp(math.log(x) * y)

THEN math.e**500 would be computed as math.exp(math.log(math.e) * 500) == math.exp(1.0 * 500) == math.exp(500.0).

But that's not how x**y is implemented.  Because the error in log() is multiplied by y, and then fed into exp() blowing it up even more, only a hopelessly naive library would implement pow() that way.  In practice, library pow functions fake the effect of at least 15 more bits than native double precision to absorb these errors.

Under the covers, then, a reasonable library pow computes math.log(math.e) to more than native double precision - and _that_ (internal, invisible) result is not 1.0.  Because math.e isn't the mathematical e to begin with.  The difference between math.e and the mathematical e is a difference quite visible to the internal log, which delivers an internal log not equal to 1, and its difference from 1 is "an error" multiplied by 500 and fed into the internal exp (blowing up the error even more).

In the end, math.e**500 returns a very good approximation to the true value, _given_ that math.e is not e.  There's no reason to hope that's close to exp(500), though - that delivers a very good approximation to e**500 (where `e` is the true e).  The larger the exponent, the more different math.e**y _should be_ from exp(y), and for the same fundamental reason 2**y differs from 3**y (or plug in any other pair of distinct bases).

All that said, I agree with Mark that math.e is at best an attractive nuisance.  Still, I'm -1 on removing it - it's a traditional and universally embraced nuisance ;-)
History
Date User Action Args
2016-08-12 18:45:39tim.peterssetrecipients: + tim.peters, gvanrossum, georg.brandl, rhettinger, mark.dickinson, ncoghlan, pitrou, vstinner, benjamin.peterson, stutzbach, eric.araujo, skrah, Aaron.Meurer, python-dev, sbaird, zach.ware, serhiy.storchaka, waldir, veky, abarry, Nofar Schnider, lisroach
2016-08-12 18:45:39tim.peterssetmessageid: <1471027539.93.0.928683621372.issue12345@psf.upfronthosting.co.za>
2016-08-12 18:45:39tim.peterslinkissue12345 messages
2016-08-12 18:45:39tim.peterscreate