complex: Fix expm1 precision loss for small arguments#1634
Open
complex: Fix expm1 precision loss for small arguments#1634
Conversation
Use cancellation-free formula that separates real and imaginary parts: real: expm1(a)*cos(b) - 2*sin(b/2)^2 imag: (expm1(a)+1)*sin(b) The previous exp(z)-1 approach lost digits when z was small due to catastrophic cancellation. The new formula delegates to the real expm1() for the real component and uses a half-angle identity for the cosine term, preserving full precision down to 1E-40 at 200 digits. The imaginary part reuses expm1(a) instead of calling exp(a) separately, eliminating one full Taylor series evaluation.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
expm1(z)to use a cancellation-free formula that separates real and imaginary parts:expm1(a)*cos(b) - 2*sin(b/2)^2(expm1(a)+1)*sin(b)exp(z)-1approach lost significant digits for small z due to catastrophic cancellationexpm1(a)instead of callingexp(a)separately, eliminating one full Taylor series evaluationTest plan