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

let asymptotic terms accept multivariate polynomials #19421

Open
dkrenn opened this issue Oct 16, 2015 · 0 comments
Open

let asymptotic terms accept multivariate polynomials #19421

dkrenn opened this issue Oct 16, 2015 · 0 comments

Comments

@dkrenn
Copy link
Contributor

dkrenn commented Oct 16, 2015

At the moment we have

sage: from sage.rings.asymptotic.term_monoid import TermMonoid
sage: from sage.rings.asymptotic.growth_group import GrowthGroup
sage: G_ZZ = GrowthGroup('y^ZZ*z^ZZ')
sage: T_ZZ = TermMonoid('exact', G_ZZ, QQ)
sage: R.<y, z> = ZZ[]
sage: T_ZZ._get_factors_(5*y*z)
(5*y*z,)
sage: G_ZZ(y)*G_ZZ(z)
y*z
sage: G_ZZ(y*z)
Traceback (most recent call last):
...
ValueError: y*z is not in Growth Group y^ZZ * z^ZZ.
> *previous* ValueError: y*z is not in any of the factors of Growth Group y^ZZ * z^ZZ

Make this work...

See also #19083, comment 64, 26.

Depends on #19083

CC: @cheuberg @behackl

Component: asymptotic expansions

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

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