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 mark.dickinson
Recipients mark.dickinson, rhettinger, steven.daprano
Date 2021-11-23.09:47:17
SpamBayes Score -1.0
Marked as misclassified Yes
Message-id <[email protected]>
In-reply-to
Content
I'm not sure this is worth worrying about. We already have a very tight error bound on the result: if `x` is a (positive) fraction and `y` is the closest float to x, (and assuming IEEE 754 binary64, round-ties-to-even, no overflow or underflow, etc.) then `math.sqrt(y)` will be in error by strictly less than 1 ulp from the true value √x, so we're already faithfully rounded. (And in particular, if the std. dev. is exactly representable as a float, this guarantees that we'll get that standard deviation exactly.)
History
Date User Action Args
2021-11-23 09:47:17mark.dickinsonsetrecipients: + mark.dickinson, rhettinger, steven.daprano
2021-11-23 09:47:17mark.dickinsonsetmessageid: <[email protected]>
2021-11-23 09:47:17mark.dickinsonlinkissue45876 messages
2021-11-23 09:47:17mark.dickinsoncreate