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

FractionField does not reduce fractions correctly over some coefficient rings #32285

Open
saliola opened this issue Jul 27, 2021 · 0 comments
Open

Comments

@saliola
Copy link
Contributor

saliola commented Jul 27, 2021

Fractions are note reduced when dividing two monomials in a fraction field over a polynomial ring with coefficients in RR or CC. Here is a very simple example, but the problem persists for multivariate rings as well:

sage: F = RR['x'].fraction_field()
sage: F.inject_variables()
Defining x
sage: x/x        # this should be 1
x/x
sage: x.is_unit()
True
sage: ~x
1.00000000000000/x
sage: ~x * x     # this should be 1
x/x
sage: x/x == 1
True

Same problem occurs with CC, CDF, CIF, RDF, RIF, RBF, etc.

Component: algebra

Keywords: polynomials, fraction fields

Issue created by migration from https://trac.sagemath.org/ticket/32285

@saliola saliola added this to the sage-9.4 milestone Jul 27, 2021
@mkoeppe mkoeppe modified the milestones: sage-9.4, sage-9.5 Aug 22, 2021
@mkoeppe mkoeppe modified the milestones: sage-9.5, sage-9.6 Dec 18, 2021
@mkoeppe mkoeppe modified the milestones: sage-9.6, sage-9.7 May 3, 2022
@mkoeppe mkoeppe modified the milestones: sage-9.7, sage-9.8 Sep 19, 2022
@mkoeppe mkoeppe removed this from the sage-9.8 milestone Jan 29, 2023
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

2 participants