Ticket #842 (closed defect: fixed)
[with patch] SAGE's Singular build fails to factor simple polynomials
| Reported by: | cwitty | Owned by: | malb |
|---|---|---|---|
| Priority: | critical | Milestone: | sage-2.8.7 |
| Component: | commutative algebra | Keywords: | |
| Cc: | Author(s): | ||
| Report Upstream: | Reviewer(s): | ||
| Merged in: | Work issues: |
Description
The following takes a very long time, possibly forever (I waited several minutes before giving up and killing it):
sage: MR.<x,w,v,u> = QQ['x','w','v','u'] sage: p = (4*v^4*u^2 - 16*v^2*u^4 + 16*u^6 - 4*v^4*u + 8*v^2*u^3 + v^4) sage: %time p.factor()
Similarly, if you run sage -singular, the equivalent code fails again:
> ring r = 0,(x,w,v,u),dp; > factorize(4*v^4*u^2 - 16*v^2*u^4 + 16*u^6 - 4*v^4*u + 8*v^2*u^3 + v^4);
However, if I build my own copy of Singular from the source on the Singular website, or if I download and install the Debian binary package from the Singular website, then this second factorization completes instantly.
Attachments
Change History
Note: See
TracTickets for help on using
tickets.

