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

rename .rational_reconstruct() to .rational_reconstruction() for consistency #12696

Closed
zimmermann6 opened this issue Mar 19, 2012 · 14 comments
Closed

Comments

@zimmermann6
Copy link
Contributor

For integers modulo n there is a rational_reconstruction method:

sage: R = IntegerModRing(97)
sage: a = R(2) / R(3)
sage: a.rational_reconstruction()
2/3

However for polynomials the corresponding method is named
rational_reconstruct:

sage: K.<x> = R[]            
sage: x.rational_reconstruct(x,4,4)
(0, 1)

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

@zimmermann6 zimmermann6 added this to the sage-5.11 milestone Mar 19, 2012
@jdemeyer jdemeyer modified the milestones: sage-5.11, sage-5.12 Aug 13, 2013
@sagetrac-vbraun-spam sagetrac-vbraun-spam mannequin modified the milestones: sage-6.1, sage-6.2 Jan 30, 2014
@sagetrac-vbraun-spam sagetrac-vbraun-spam mannequin modified the milestones: sage-6.2, sage-6.3 May 6, 2014
@sagetrac-vbraun-spam sagetrac-vbraun-spam mannequin modified the milestones: sage-6.3, sage-6.4 Aug 10, 2014
@yyyyx4

This comment has been minimized.

@yyyyx4
Copy link
Member

yyyyx4 commented Aug 27, 2022

Branch: public/12696

@yyyyx4
Copy link
Member

yyyyx4 commented Aug 27, 2022

Author: Lorenz Panny

@yyyyx4
Copy link
Member

yyyyx4 commented Aug 27, 2022

Commit: 08c7631

@yyyyx4 yyyyx4 changed the title incoherent names rational_reconstruct and rational_reconstruction rename .rational_reconstruct() to .rational_reconstruction() for consistency Aug 27, 2022
@yyyyx4 yyyyx4 modified the milestones: sage-6.4, sage-9.7 Aug 27, 2022
@kwankyu
Copy link
Collaborator

kwankyu commented Aug 27, 2022

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 .lift() necessary?

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".

@sagetrac-git
Copy link
Mannequin

sagetrac-git mannequin commented Aug 28, 2022

Branch pushed to git repo; I updated commit sha1. New commits:

2e7e636remove incorrect call to .lift()
888b4fafix terminology in docstring

@sagetrac-git
Copy link
Mannequin

sagetrac-git mannequin commented Aug 28, 2022

Changed commit from 08c7631 to 888b4fa

@yyyyx4
Copy link
Member

yyyyx4 commented Aug 28, 2022

comment:9

Indeed, thanks. (I'm sure I had fixed the .lift() call at some point, but apparently that change didn't make it into the commit...)

@kwankyu
Copy link
Collaborator

kwankyu commented Aug 28, 2022

comment:10
sage -t src/sage/tests/books/computational-mathematics-with-sagemath/polynomes_doctest.py  # 1 doctest failed
sage -t src/sage/tests/books/computational-mathematics-with-sagemath/sol/polynomes_doctest.py  # 1 doctest failed

@sagetrac-git
Copy link
Mannequin

sagetrac-git mannequin commented Aug 29, 2022

Changed commit from 888b4fa to 47c91ea

@sagetrac-git
Copy link
Mannequin

sagetrac-git mannequin commented Aug 29, 2022

Branch pushed to git repo; I updated commit sha1. New commits:

47c91eafix book doctests

@kwankyu
Copy link
Collaborator

kwankyu commented Aug 30, 2022

Reviewer: Kwankyu Lee

@kwankyu
Copy link
Collaborator

kwankyu commented Aug 30, 2022

comment:12

Thanks. LGTM.

@vbraun
Copy link
Member

vbraun commented Sep 25, 2022

Changed branch from public/12696 to 47c91ea

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

No branches or pull requests

7 participants