-
-
Notifications
You must be signed in to change notification settings - Fork 480
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Trac #34470: categories of lazy series
We should check the categories of our lazy rings: {{{ sage: L = LazyTaylorSeriesRing(QQ, "x, y") ; L in DiscreteValuationRings True sage: L in PrincipalIdealDomains True }}} is wrong. It is not even a 'valuation ring' , see https://en.wikipedia.org/wiki/Valuation_ring, because neither `x/y` not `y/x` is in `L`. I doubt it should be in `UniqueFactorizationDomains`, because this category is reserved for constructive UFD's. In the univariate case, the uniformizer is the generator "x", but this is not yet implemented: {{{ sage: L = LazyTaylorSeriesRing(QQ, "x") sage: L.uniformizer() ... NotImplementedError: <abstract method uniformizer at 0x7ff26e85acb0> }}} Similarly, we have {{{ sage: LazySymmetricFunctions(SymmetricFunctions(QQ).p()) in DiscreteValuationRings True sage: LazySymmetricFunctions(SymmetricFunctions(QQ).p()) in PrincipalIdealDomains True }}} which is also wrong. URL: https://trac.sagemath.org/34470 Reported by: mantepse Ticket author(s): Martin Rubey Reviewer(s): Travis Scrimshaw
- Loading branch information
Showing
6 changed files
with
1,162 additions
and
126 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.