[sage-devel] Re: Monstrous Bug in Expresion multiplication

2009-06-17 Thread LBerlioz
that's it, thanks. --~--~-~--~~~---~--~~ To post to this group, send email to sage-devel@googlegroups.com To unsubscribe from this group, send email to sage-devel-unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/sag

[sage-devel] Monstrous Bug in Expresion multiplication

2009-06-17 Thread LBerlioz
Hi, when I do: sage: z(x)=(e^(x^2))*e^(-(x^2));z I get: x |--> e^(-2*x^2) also : sage: (e^(x^3))*e^(-(x^3)) e^(-2*x^3) strangely enough: sage: e^x*e^(-x) 1 I have been looking at this for some time now and I don't think this is a maxima problem (don't believe me I barely know what I'm doing)

[sage-devel] Re: bug in rational_diagonal_form() from QuadraticForm class?

2009-04-20 Thread LBerlioz
I opened ticket #5837 and attached the patch. I also noted there is a more general ticket #5418, can I attach an enhancement to the signature function here? I think it may be useful for other people too. exitos, Luis Berlioz --~--~-~--~~~---~--~~ To post to this

[sage-devel] bug in rational_diagonal_form() from QuadraticForm class?

2009-04-15 Thread LBerlioz
When I do: sage: A=matrix(QQ,3,3,[-3,2,0 , 2,3,-2 , 0,-2,5 ]) sage: Q=QuadraticForm(2*A) sage: Q Quadratic form in 3 variables over Rational Field with coefficients: [ -3 4 0 ] [ * 3 -4 ] [ * * 5 ] If I try to get the diagonal form: sage: Q.rational_diagonal_form() Quadratic form in 3 variables o