-
-
Notifications
You must be signed in to change notification settings - Fork 587
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
rename .rational_reconstruct() to .rational_reconstruction() for consistency #12696
Comments
This comment has been minimized.
This comment has been minimized.
Branch: public/12696 |
Author: Lorenz Panny |
Commit: |
comment:7
The added method + def rational_reconstruction(self, *args, **kwargs):
+ r"""
+ Compute a rational reconstruction of this polynomial quotient
+ ring element to its parent.
+
+ This method is a thin convenience wrapper around
+ :meth:`Polynomial.rational_reconstruction`.
+
+ EXAMPLES::
+
+ sage: R.<x> = GF(65537)[]
+ sage: m = x^11 + 25345*x^10 + 10956*x^9 + 13873*x^8 + 23962*x^7 + 17496*x^6 + 30348*x^5 + 7440*x^4 + 65438*x^3 + 7676*x^2 + 54266*x + 47805
+ sage: f = 20437*x^10 + 62630*x^9 + 63241*x^8 + 12820*x^7 + 42171*x^6 + 63091*x^5 + 15288*x^4 + 32516*x^3 + 2181*x^2 + 45236*x + 2447
+ sage: f_mod_m = R.quotient(m)(f)
+ sage: f_mod_m.rational_reconstruction()
+ (51388*x^5 + 29141*x^4 + 59341*x^3 + 7034*x^2 + 14152*x + 23746,
+ x^5 + 15208*x^4 + 19504*x^3 + 20457*x^2 + 11180*x + 28352)
+ """
+ m = self.parent().modulus()
+ R = m.parent()
+ f = R(self._polynomial)
+ return f.lift().rational_reconstruction(m, *args, **kwargs) doesn't work for me. The example fails. Is In the header of the docstring, "to its parent" seems wrong. You meant P for the quotient ring P/m? I think it is called "cover (ring)" but I am not sure. Certainly it is not "parent". |
comment:9
Indeed, thanks. (I'm sure I had fixed the |
comment:10
|
Branch pushed to git repo; I updated commit sha1. New commits:
|
Reviewer: Kwankyu Lee |
comment:12
Thanks. LGTM. |
Changed branch from public/12696 to |
For integers modulo n there is a
rational_reconstruction
method:However for polynomials the corresponding method is named
rational_reconstruct
:The naming is incoherent.
CC: @jpflori
Component: basic arithmetic
Author: Lorenz Panny
Branch/Commit:
47c91ea
Reviewer: Kwankyu Lee
Issue created by migration from https://trac.sagemath.org/ticket/12696
The text was updated successfully, but these errors were encountered: