Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Noncentral F distribution CDF edge cases #1198

Open
dschmitz89 opened this issue Sep 13, 2024 · 2 comments
Open

Noncentral F distribution CDF edge cases #1198

dschmitz89 opened this issue Sep 13, 2024 · 2 comments

Comments

@dschmitz89
Copy link
Contributor

dschmitz89 commented Sep 13, 2024

SciPy is thanks to Boost finally able to remove parts of the ancient cdflib Fortran library. Recently, the noncentral F distribution CDF was fully replaced by the boost implementation in scipy/scipy#21505, resulting in a far more accurate results for a wide range of inputs. Still, edge cases were uncovered which we would like to share with you. They occur for very large and very tiny values for the degrees of freedom. Note that for the second case even Mathematica is not able to compute a result, so maybe we do not need to thrive for a feasible value but raise an error or return nan. @mdhaber found a limiting formula that might be helpful: scipy/scipy#21505 (comment)

v1 v2 l x Boost result
1e-100 3 1.5 1e100 nan
1e20 1e20 1 1 -124.40303872682864
@jzmaddock
Copy link
Collaborator

Reproduced, first one is an easy fix. Not so sure about the second yet...

@jzmaddock
Copy link
Collaborator

Update: working on this now, there are some easy to fix numerical-stability issues which sort of fix both, but ideally we need some asymptotic expansions for the incomplete beta with large parameters: these exist, and I have them somewhat working, but they are deeply numerically unstable, especially near the saddle point. Hopefully more soon...

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants