|
|
last edited 9 years ago by test1 |
1 2 3 | ||
Editor: page
Time: 2009/10/18 23:47:58 GMT-7 |
||
Note: |
changed: - I just ran across the following astonishing bug: \begin{axiom} s :=-x^3+1/6*(-2*sqrt(6)+2*sqrt(3)+3*sqrt(2))*x^2+1/6*((sqrt(3)+sqrt(2))*sqrt(6)-2*sqrt(2)*sqrt(3))*x-sqrt(2)*sqrt(3)*sqrt(6)/6 factor s \end{axiom} There are several things to notice, in fact: - The factorisation is nonsense - I think that AlgebraicNumber should be able to simplify $\sqrt{2}\sqrt{3}\sqrt{6}$ to $\sqrt{36}$ - shouldn't $sqrt{36}$ be simplified to $6$? Usually, 'sqrt' denotes the positive square root. Martin From kratt6 Wed Jan 25 04:50:05 -0600 2006 From: kratt6 Date: Wed, 25 Jan 2006 04:50:05 -0600 Subject: Message-ID: <20060125045005-0600@wiki.axiom-developer.org> In fact, the problem shows already with \begin{axiom} s :=x^2-sqrt(2)*sqrt(3)*sqrt(6) \end{axiom} and it seems to occur in 'InnerAlgFactor':: !\begin{axiom} )tr InnerAlgFactor )ma factor(s) \end{axiom}
I just ran across the following astonishing bug:
s :=-x^3+1/6*(-2*sqrt(6)+2*sqrt(3)+3*sqrt(2))*x^2+1/6*((sqrt(3)+sqrt(2))*sqrt(6)-2*sqrt(2)*sqrt(3))*x-sqrt(2)*sqrt(3)*sqrt(6)/6
(1) |
factor s
(2) |
There are several things to notice, in fact:
sqrt
denotes the positive square root.Martin
s :=x^2-sqrt(2)*sqrt(3)*sqrt(6)
(3) |
and it seems to occur in 'InnerAlgFactor?':
\begin{axiom} )tr InnerAlgFactor )ma factor(s) \end{axiom}