Artifact fdd90e62ca1c52f27535cdc718eb8dd30815d4fcdba34ce147ec1f23eb8f5719:
- Executable file
r37/lisp/csl/html/r37_0172.html
— part of check-in
[f2fda60abd]
at
2011-09-02 18:13:33
on branch master
— Some historical releases purely for archival purposes
git-svn-id: https://svn.code.sf.net/p/reduce-algebra/code/trunk/historical@1375 2bfe0521-f11c-4a00-b80e-6202646ff360 (user: arthurcnorman@users.sourceforge.net, size: 987) [annotate] [blame] [check-ins using] [more...]
<A NAME=REDUCT> <TITLE>REDUCT</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>REDUCT</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> The <em>reduct</em> operator returns the remainder of its expression after the leading term with respect to the kernel in the second argument is removed. <P> <H3> syntax: </H3> <P> <P> <em>reduct</em>(<expression>,<kernel>) <P> <P> <P> <expression> is ordinarily a polynomial. If <A HREF=r37_0322.html>ratarg</A> is on, a rational expression may also be used, otherwise an error results. <kernel> must be a <A HREF=r37_0002.html>kernel</A>. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> reduct((x+y)**3,x); 2 2 Y*(3*X + 3*X*Y + Y ) reduct(x + sin(x)**3,sin(x)); X reduct(x + sin(x)**3,y); 0 </TT></PRE><P>If the expression does not contain the kernel, <em>reduct</em> ret urns 0. <P> <P> <P>