This page is set to execute \begin{axiom}... \end{axiom}
commands using FriCAS?:
axiom
)version
Value = "FriCAS 2010-12-08 compiled at Tuesday April 5, 2011 at 13:07:45 "
Any comments added here with use this version of FriCAS?.
axiom
solve(s=vt+at^2/2,t)
Type: List(Equation(Fraction(Polynomial(Integer))))
axiom
radicalsolve(s=vt+at^2/2,t)
There are no library operations named radicalsolve
Use HyperDoc Browse or issue
)what op radicalsolve
to learn if there is any operation containing " radicalsolve " in
its name.
Cannot find a definition or applicable library operation named
radicalsolve with argument type(s)
Equation(Polynomial(Fraction(Integer)))
Variable(t)
Perhaps you should use "@" to indicate the required return type,
or "$" to specify which version of the function you need.
axiom
solve(vt+at^2/2-s=0,t)
Type: List(Equation(Fraction(Polynomial(Integer))))
axiom
solve(vt+at/2-s=0,t)
Type: List(Equation(Fraction(Polynomial(Integer))))
axiom
solve(v*t+a*t/2-s=0,t)
Type: List(Equation(Fraction(Polynomial(Integer))))
axiom
solve(v*t+a*t^2/2-s=0,t)
Type: List(Equation(Fraction(Polynomial(Integer))))
axiom
radicalSolve(p^3 - p + 1/10=0,p)
Type: List(Equation(Expression(Integer)))
axiom
R1 ==> Record(foo1: String, remLexs: List Integer)
Type: Void
axiom
R2 ==> Record(foo2: String, remLexs: List Integer)
Type: Void
axiom
r1: R1 := ["a", [1,2,3]]
Type: Record(foo1: String,remLexs: List(Integer))
axiom
r2: R2 := ["b", [5]]
Type: Record(foo2: String,remLexs: List(Integer))
axiom
r1.remLexs
Type: List(Integer)
axiom
r2.remLexs
Type: List(Integer)