limits.tex 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. \documentstyle[11pt]{article}
  2. \title{A REDUCE Limits Package}
  3. \author{Stanley L. Kameny \\ E-mail: stan\%valley.uucp@rand.org}
  4. \begin{document}
  5. \date{}
  6. \maketitle
  7. LIMITS is a fast limit package for REDUCE for functions which are
  8. continuous except for computable poles and singularities, based on some
  9. earlier work by Ian Cohen and John P. Fitch. The Truncated Power Series
  10. package is used for non-critical points, at which the value of the
  11. function is the constant term in the expansion around that point.
  12. l'H\^{o}pital's rule is used in critical cases, with preprocessing of
  13. $\infty - \infty$ forms and reformatting of product forms in order
  14. to apply l'H\^{o}pital's rule. A limited amount of bounded arithmetic
  15. is also employed where applicable.
  16. \section{Normal entry points}
  17. \vspace{.1in}
  18. \noindent {\tt LIMIT}(EXPRN:{\em algebraic}, VAR:{\em kernel}, LIMPOINT:{\em algebraic}):{\em algebraic}
  19. \vspace{.1in}
  20. This is the standard way of calling limit, applying all of the methods. The
  21. result is the limit of EXPRN as VAR approaches LIMPOINT.
  22. \section{Direction-dependent limits}
  23. \vspace{.1in}
  24. \noindent {\tt LIMIT!+}(EXPRN:{\em algebraic}, VAR:{\em kernel}, LIMPOINT:{\em algebraic}):{\em algebraic} \\
  25. \noindent {\tt LIMIT!-}(EXPRN:{\em algebraic}, VAR:{\em kernel}, LIMPOINT:{\em algebraic}):{\em algebraic}
  26. \vspace{.1in}
  27. If the limit depends upon the direction of approach to the {\tt LIMPOINT}, the
  28. functions {\tt LIMIT!+} and {\tt LIMIT!-} may be used. They are defined by:
  29. \vspace{.1in}
  30. \noindent{\tt LIMIT!+ (LIMIT!-)} (EXP,VAR,LIMPOINT) $\rightarrow$ \\
  31. \hspace*{2em}{\tt LIMIT}(EXP*,$\epsilon$,0) EXP*=sub(VAR=VAR+(-)$\epsilon^2$,EXP)
  32. \section{Diagnostic Functions}
  33. \vspace{.1in}
  34. \noindent {\tt LIMIT0}(EXPRN:{\em algebraic}, VAR:{\em kernel}, LIMPOINT:{\em algebraic}):{\em algebraic}
  35. \vspace{.1in}
  36. This function will use all parts of the limits package, but it does not
  37. combine log terms before taking limits, so it may fail if there is a sum
  38. of log terms which have a removable singularity in some of the terms.
  39. \vspace{.1in}
  40. \noindent {\tt LIMIT1}(EXPRN:{\em algebraic}, VAR:{\em kernel}, LIMPOINT:{\em algebraic}):{\em algebraic}
  41. \vspace{.1in}
  42. This function uses the TPS branch only, and will fail if the limpoint is
  43. singular.
  44. \vspace{.1in}
  45. \begin{tabbing}
  46. {\tt LIMIT2}(\=TOP:{\em algebraic}, \\
  47. \>BOT:{\em algebraic}, \\
  48. \>VAR:{\em kernel}, \\
  49. \>LIMPOINT:{\em algebraic}):{\em algebraic}
  50. \end{tabbing}
  51. \vspace{.1in}
  52. This function applies l'H\^{o}pital's rule to the quotient (TOP/BOT).
  53. \end{document}