login  home  contents  what's new  discussion  bug reports     help  links  subscribe  changes  refresh  edit

Edit detail for SandBoxSymbolic revision 1 of 35

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
Editor: Bill Page
Time: 2008/05/22 13:01:43 GMT-7
Note: new

changed:
-
\begin{axiom}
a:Union(Symbolic,Integer)
b:Union(Symbolic,Integer)
c:=a*3-b*2
p:UP(x,Integer):=x*2-7
pc := p c
f(x)==x^3-x^2+1
fb := f b
a:=1
b:=-3
eval(pc,['a=a,'b=b])
eval(c,['a=a,'b=b])
eval(fb,['a=a,'b=b])
\end{axiom}

axiom
a:Union(Symbolic,Integer) Symbolic is not a valid type. b:Union(Symbolic,Integer) Symbolic is not a valid type. c:=a*3-b*2
LatexWiki Image(1)
Type: Polynomial Integer
axiom
p:UP(x,Integer):=x*2-7
LatexWiki Image(2)
Type: UnivariatePolynomial?(x,Integer)
axiom
pc := p c
LatexWiki Image(3)
Type: Fraction Polynomial Integer
axiom
f(x)==x^3-x^2+1
Type: Void
axiom
fb := f b
axiom
Compiling function f with type Variable b -> Polynomial Integer
LatexWiki Image(4)
Type: Polynomial Integer
axiom
a:=1
LatexWiki Image(5)
Type: PositiveInteger?
axiom
b:=-3
LatexWiki Image(6)
Type: Integer
axiom
eval(pc,['a=a,'b=b])
LatexWiki Image(7)
Type: Fraction Polynomial Integer
axiom
eval(c,['a=a,'b=b])
LatexWiki Image(8)
Type: Polynomial Integer
axiom
eval(fb,['a=a,'b=b])
LatexWiki Image(9)
Type: Polynomial Integer