Artifact 1ce0bfbab69503eeb7dc64b12794ed7d447219990f7ce56be2ecdfebf9ece73d:
- Executable file
r37/lisp/csl/html/r37_0159.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: 1477) [annotate] [blame] [check-ins using] [more...]
<A NAME=LIMIT> <TITLE>LIMIT</TITLE></A> <b><a href=r37_idx.html>INDEX</a></b><p><p> <B>LIMIT</B> _ _ _ _ _ _ _ _ _ _ _ _ <B>operator</B><P> <P> <P> <P> LIMITS is a fast limit package for REDUCE for functions which are continuous except for computable poles and singularities, based on some earlier work by Ian Cohen and John P. Fitch. The Truncated Power Series package is used for non-critical points, at which the value of the function is the constant term in the expansion around that point. l'Hopital's rule is used in critical cases, with preprocessing of 1-1 forms and reformatting of product forms in order to apply l'Hopital's rule. A limited amount of bounded arithmetic is also employed where applicable. <P> <P> <P> <H3> syntax: </H3> <em>limit</em>(<expr>,<var>,<limpoint>) or <P> <P> <em>limit!+</em>(<expr>,<var>,<limpoint>) or <P> <P> <em>limit!-</em>(<expr>,<var>,<limpoint>) <P> <P> <P> where <expr> is an expression depending of the variable <var> (a <A HREF=r37_0002.html>kernel</A>) and <limpoint> is the limit point. If the limit depends upon the direction of approach to the <limpoint>, the operators <em>limit!+</em> and <em>limit!-</em> may be used. <P> <P> <P> <H3> examples: </H3> <P><PRE><TT> limit(x*cot(x),x,0); 0 limit((2x+5)/(3x-2),x,infinity); 2 -- 3 </TT></PRE><P>