The following matrix operation produces wrong answer in online Sage:
M=matrix(RR,[[7,3,10,13],[1,1,2,2],[1,2,3,4],[1,3,5,7]]);det(M);invM=M^(-1);invM*M;det(invM)
 If one changes RR to QQ the answers turn correct. Or it is enough to change 
one corner matrix entry to:
M=matrix(RR,[[8,3,10,13],[1,1,2,2],[1,2,3,4],[1,3,5,7]]);det(M);invM=M^(-1);invM*M;det(invM)
 to get right answers.
 How can one be sure about Sage linear algebra w/this problem? Am I missing 
something obvious? It took me several hours to zero in on this bug from a large 
program. Ant feedback will be appreciated.

-- 
You received this message because you are subscribed to the Google Groups 
"sage-support" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to sage-support+unsubscr...@googlegroups.com.
To post to this group, send email to sage-support@googlegroups.com.
Visit this group at http://groups.google.com/group/sage-support.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to