|
|
last edited 17 years ago by kratt6 |
1 2 | ||
Editor:
Time: 2007/11/17 23:02:35 GMT-8 |
||
Note: property change |
changed: - \begin{axiom} factor(simplify((1+x)^3)) \end{axiom} vs. \begin{axiom} factor((1+x)^3) \end{axiom} simplify changes the type to 'Expression Integer', where the original was 'Polynomial Integer'. Why does factor refuse to factor an Expression Integer but succeeds with Polynomial Integer? \begin{axiom} simplify((1+x)^3) factor(%::Polynomial Integer) \end{axiom} From unknown Sun Mar 6 15:24:55 -0600 2005 From: Date: Sun, 06 Mar 2005 15:24:55 -0600 Subject: property change Message-ID: <20050306152455-0600@page.axiom-developer.org> From unknown Tue Mar 8 12:47:35 -0600 2005 From: Date: Tue, 08 Mar 2005 12:47:35 -0600 Subject: property change Message-ID: <20050308124735-0600@page.axiom-developer.org>
axiomfactor(simplify((1+x)^3))
![]() | (1) |
vs.
axiomfactor((1+x)^3)
![]() | (2) |
simplify changes the type to Expression Integer
, where the original was Polynomial Integer
.
Why does factor refuse to factor an Expression Integer but succeeds with Polynomial Integer?
axiomsimplify((1+x)^3)
![]() | (3) |
axiomfactor(%::Polynomial Integer)
![]() | (4) |