-
-
Notifications
You must be signed in to change notification settings - Fork 604
Precision issue in the normalization of a Tate series #40046
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
base: develop
Are you sure you want to change the base?
Conversation
Documentation preview for this PR (built with commit 9713051; changes) is ready! 🎉 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Changes correctly fix the precision issue.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I approve that this update fixes the issue in question.
All tests seem to pass (the error, which is reported, is a priori unrelated to this PR). |
sagemathgh-40046: Precision issue in the normalization of a Tate series This PR fixes the following bug: ``` sage: S.<x,y> = TateAlgebra(Qp(5), log_radii=(1,0)) sage: f = 5*x sage: f.valuation() 0 sage: f.add_bigoh(1) O(5 * <x/5, y>) ``` The correct answer is `(5 + O(5^2))*x + O(5 * <x/5, y>)` given that the first summand is not absorbed by the `O(.)`. ### 📝 Checklist <!-- Put an `x` in all the boxes that apply. --> - [x] The title is concise and informative. - [x] The description explains in detail what this PR is about. - [ ] I have linked a relevant issue or discussion. - [x] I have created tests covering the changes. - [x] I have updated the documentation and checked the documentation preview. URL: sagemath#40046 Reported by: Xavier Caruso Reviewer(s): TristanVaccon, Vilanele
This PR fixes the following bug:
The correct answer is
(5 + O(5^2))*x + O(5 * <x/5, y>)
given that the first summand is not absorbed by theO(.)
.📝 Checklist