fricas
(1) -> Dx: LODO(EXPR INT, f+->D(f,x)) := D();
Type: LinearOrdinaryDifferentialOperator
?(Expression(Integer),
theMap(*1;anonymousFunction;0;initial;internal))
fricas
u := operator 'u;
fricas
L := Dx + u(x);
Type: LinearOrdinaryDifferentialOperator
?(Expression(Integer),
theMap(*1;anonymousFunction;0;initial;internal))
fricas
L**2 = L*L
There are no library operations named **
Use HyperDoc Browse or issue
)what op **
to learn if there is any operation containing " ** " in its name.
Cannot find a definition or applicable library operation named **
with argument type(s)
LinearOrdinaryDifferentialOperator(Expression(Integer),theMap(*1;anonymousFunction;0;initial;internal))
PositiveInteger
Perhaps you should use "@" to indicate the required return type,
or "$" to specify which version of the function you need.
or
fricas
)cl co
All user variables and function definitions have been cleared.
All )browse facility databases have been cleared.
Internally cached functions and constructors have been cleared.
)clear completely is finished.
f: INT->INT:=x+->x+1
Type: (Integer -> Integer)
fricas
K := OREUP(x, INT, 1, f);
Type: Type
fricas
L := x::K+1;
Type: UnivariateSkewPolynomial
?(x,
Integer,
R -> R,
theMap(*1;anonymousFunction;1;initial;internal))
fricas
L^2=L*L
Type: Equation(UnivariateSkewPolynomial
?(x,
Integer,
R -> R,
theMap(*1;anonymousFunction;1;initial;internal)))
Reason is, that exponentiation is not taken from Monoid, but from SUP.
Martin
Status: open => fixed somewhere
http://fricas.svn.sourceforge.net/viewvc/fricas/trunk/src/algebra/ore.spad.pamphlet?r1=257&r2=346&view=patch
Status: fixed somewhere => fix proposed