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

Implemented ceil/floor methods for QQbar #39822

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from

Conversation

EigenVector22
Copy link

Added .ceil() and .floor() methods to AlgebraicNumber_base to handle algebraic numbers correctly.

This fixes the bug reported in #39345 where ceil(QQbar(0)) would fail due to reliance on numerical interval arithmetic.

The method will prioritize checking for exact integers algebraically before falling back to numerical methods for real, non-integer values. Also raise a TypeError for complex numbers with non-zero imaginary parts, consistent with the standard definition of ceil/floor.

Added the doctests.

📝 Checklist

  • The title is concise and informative.
  • The description explains in detail what this PR is about.
  • I have linked a relevant issue or discussion.
  • I have created tests covering the changes.
  • I have updated the documentation and checked the documentation preview.

⌛ Dependencies

@EigenVector22
Copy link
Author

EigenVector22 commented Mar 31, 2025

@dimpase hello, can you please review this
Thanks,

Added .ceil() and .floor() methods to AlgebraicNumber_base to handle
algebraic numbers correctly.

This fixes the bug reported in sagemath#39345 where ceil(QQbar(0)) would
fail due to reliance on numerical interval arithmetic.

The method will prioritize checking for exact integers algebraically
before falling back to numerical methods for real, non-integer
values. Also raise a TypeError for complex numbers with non-zero
imaginary parts, consistent with the standard definition of
ceil/floor.

Added the doctests.
@EigenVector22 EigenVector22 force-pushed the fix-qqbar-ceil-39345 branch from 0b3f9eb to e8ab8e4 Compare April 2, 2025 07:07
@EigenVector22
Copy link
Author

@mezzarobba hello, any feedback on the code and the changes made,
Thanks,

@mezzarobba
Copy link
Member

Typically it is vital for performance to handle as many cases as possible using numerical approximations and fall back to exact arithmetic only when necessary.

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

Successfully merging this pull request may close these issues.

2 participants