-
This is a feature request to make it possible to construct `RootOf`s containing `RootOf`s like so:
``` python
from sympy import Poly, RootOf
from sympy.abc import x,y
aroot = RootOf(x**7 + x + 1, 0,…
-
We have a problem in 8.4 that didn't arise in 8.2:
```
sage: R.=BooleanPolynomialRing()
sage: P.=R[]
sage: PQ.=P.quo(X^4+X+1)
sage: (t^4+t+1)==0 #problem
False
sage: (t^4+t+1).is_zero() #correct
Tr…
-
Hi all, we are using flavio to generate and fit heavily. Since we perform many toys, speed becomes a critical issue for us and we started looking into possible ways of speeding flavio up.
Are there…
-
We've observed an error in gcds for polynomials over `Zmod(5^2)` and `Zmod(5^3)`. This seems to be a problem in FLINT's `nmod_poly_gcd`, since Sage essentially calls that function directly.
```
sa…
-
I found some inconsistency in the API of Nemo. If we have the polynomial f(X) over some ring (QQ, ZZ, others), we can use only `factor` (no `roots` function). If we use CC (for example `ComplexField(6…
-
In this patch truncated multiplication of dense polynomials is
used in `PowerSeries_poly` multiplication.
in Sage-4.6 on my computer with Intel Core i7 2.8GHz
```
sage: R. = QQ[]
sage: K. = PowerS…
-
I am wondering how the interfaces to the factorization should be provided.
It should be as simple as possible doing only the basic things. Would it be
heavy to do something like in sage, creating a `…
-
Currently, `math.rationalize` seems to ignore imaginary numbers:
```js
// math.js version 9.5.1
// complex coefficient a = (2 + complex(3, 4))
let a = new math.OperatorNode("+", "add", [new math…
-
As discussed on [sagedevel](https://groups.google.com/g/sage-devel/c/cuYVxld88Ng/m/nNfV4jxBBAAJ), the following determinant is 0, but that's not what sage says:
```
sage: a,b,c,d,e,z = var("a b c d…
-
Hello, I've been using this package a lot recently and I love it.
I know fairly little about this subject, but I have a couple of applications that are really benefiting from the Symbolic polynomi…