there is trouble with the determinant method on a matrix over a funky ring
(yes, the same funky ring causing all my other problems). in its simplest
form:
In [43]: W.<w>=QQ['w']
In [44]: WZ.<z>=W['z']
In [45]: matrix(WZ,2,2,[1,z,z,z^2]).det()
Out[45]: <kaboom!!!>
the analog over a "shallower" polynomial ring works:
In [54]: matrix(W,2,2,[1,w,w,w^2]).det()
Out[54]: 0
i've implemented a local workaround, but i wanted to make this bug report.
(my workaround consists of wrapping the call to charpoly in a try...except
block, and then falling through to the other code which does expansion by
minors.)
-kyle
p.s. is there a more formal or preferred way to submit a bug report?
--~--~---------~--~----~------------~-------~--~----~
To post to this group, send email to sage-devel@googlegroups.com
To unsubscribe from this group, send email to [EMAIL PROTECTED]
For more options, visit this group at http://groups.google.com/group/sage-devel
URLs: http://sage.scipy.org/sage/ and http://modular.math.washington.edu/sage/
-~----------~----~----~----~------~----~------~--~---