pk-misc.tex 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595
  1. \section{Miscellaneous Packages}
  2. \begin{Introduction}{Miscellaneous Packages}
  3. REDUCE includes a large number of packages that have been contributed by
  4. users from various fields. Some of these, together with their relevant
  5. commands, switches and so on (e.g., the NUMERIC package), have
  6. been described elsewhere. This section describes those packages for which
  7. no separate help material exists. Each has its own switches, commands,
  8. and operators, and some redefine special characters to aid in their
  9. notation. However, the brief descriptions given here do not include all
  10. such information. Readers are referred to the general package
  11. documentation in this case, which can be found, along with the source
  12. code, under the subdirectories \name{doc} and \name{src} in the
  13. \name{reduce} directory. The \nameref{load_package} command is used to
  14. load the files you wish into your system. There will be a short delay
  15. while the package is loaded. A package cannot be {\it unloaded}. Once it
  16. is in your system, it stays there until you end the session. Each package
  17. also has a test file, which you will find under its name in the
  18. \name{\$reduce/xmpl} directory.
  19. Finally, it should be mentioned that such user-contributed packages are
  20. unsupported; any questions or problems should be directed to their
  21. authors.
  22. \end{Introduction}
  23. \begin{Package}{ALGINT}
  24. \index{integration}\index{integration of square roots}
  25. Author: James H. Davenport \\
  26. The \name{algint} package provides indefinite integration of square roots.
  27. This package, which is an extension of the basic integration package
  28. distributed with REDUCE, will analytically integrate a wide range of
  29. expressions involving square roots. The \nameref{algint} switch provides for
  30. the use of the facilities given by the package, and is automatically turned
  31. on when the package is loaded. If you want to return to the standard
  32. integration algorithms, turn \nameref{algint} off. An error message is given
  33. if you try to turn the \nameref{algint} switch on when its package is not
  34. loaded.
  35. \end{Package}
  36. \begin{Package}{APPLYSYM}
  37. \index{differential equations} \index{symmetries}
  38. Author: Thomas Wolf \\
  39. This package provides programs APPLYSYM, QUASILINPDE and DETRAFO for
  40. computing with infinitesimal symmetries of differential equations.
  41. \end{Package}
  42. \begin{Package}{ARNUM}
  43. \index{algebraic numbers}
  44. Author: Eberhard Schruefer\\
  45. This package provides facilities for handling algebraic numbers as polynomial
  46. coefficients in REDUCE calculations. It includes facilities for introducing
  47. indeterminates to represent algebraic numbers, for calculating splitting
  48. fields, and for factoring and finding greatest common divisors in such
  49. domains.
  50. \end{Package}
  51. \begin{Package}{ASSIST}
  52. \index{utilities}
  53. Author: Hubert Caprasse\\
  54. ASSIST contains a large number of additional general purpose functions
  55. that allow a user to better adapt REDUCE to various calculational
  56. strategies and to make the programming task more straightforward and more
  57. efficient.
  58. \end{Package}
  59. \begin{Package}{AVECTOR}
  60. \index{vector algebra}\index{cross product}\index{dot product}
  61. Author: David Harper\\
  62. This package provides REDUCE with the ability to perform vector algebra
  63. using the same notation as scalar algebra. The basic algebraic operations
  64. are supported, as are differentiation and integration of vectors with
  65. respect to scalar variables, cross product and dot product, component
  66. manipulation and application of scalar functions (e.g. cosine) to a vector
  67. to yield a vector result.
  68. \end{Package}
  69. \begin{Package}{BOOLEAN}
  70. \index{boolean expressions}
  71. Author: Herbert Melenk\\
  72. This package supports the computation with boolean expressions in the
  73. propositional calculus. The data objects are composed from algebraic
  74. expressions connected by the infix boolean operators {\bf and}, {\bf or},
  75. {\bf implies}, {\bf equiv}, and the unary prefix operator {\bf not}.
  76. {\bf Boolean} allows you to simplify expressions built from these
  77. operators, and to test properties like equivalence, subset property etc.
  78. \end{Package}
  79. \begin{Package}{CALI}
  80. \index{polynomial}\index{Groebner}\index{commutative algebra}
  81. Author: Hans-Gert Gr{\"a}be \\
  82. This package contains algorithms for computations in commutative algebra
  83. closely related to the Groebner algorithm for ideals and modules. Its
  84. heart is a new implementation of the Groebner algorithm that also allows
  85. for the computation of syzygies. This implementation is also applicable to
  86. submodules of free modules with generators represented as rows of a matrix.
  87. \end{Package}
  88. \begin{Package}{CAMAL}
  89. \index{celestial mechanics}\index{Fourier series}
  90. Author: John P. Fitch\\
  91. This packages implements in REDUCE the Fourier transform procedures of the
  92. CAMAL package for celestial mechanics.
  93. \end{Package}
  94. \begin{Package}{CHANGEVR}
  95. Author: G. Ucoluk\\
  96. This package provides facilities for changing the independent variables in
  97. a differential equation. It is basically the application of the chain rule.
  98. \end{Package}
  99. \begin{Package}{COMPACT}
  100. \index{simplification}
  101. Author: Anthony C. Hearn\\
  102. COMPACT is a package of functions for the reduction of a polynomial in the
  103. presence of side relations. COMPACT applies the side relations to the
  104. polynomial so that an equivalent expression results with as few terms as
  105. possible. For example, the evaluation of
  106. \begin{verbatim}
  107. compact(s*(1-sin x^2)+c*(1-cos x^2)+sin x^2+cos x^2,
  108. {cos x^2+sin x^2=1});
  109. \end{verbatim}
  110. yields the result
  111. \begin{verbatim}
  112. 2 2
  113. SIN(X) *C + COS(X) *S + 1
  114. \end{verbatim}
  115. The first argument to the operator \name{compact} is the expression
  116. and the second is a list of side relations that can be
  117. equations or simple expressions (implicitly equated to zero). The
  118. kernels in the side relations may also be free variables with the
  119. same meaning as in rules, e.g.
  120. \begin{verbatim}
  121. sin_cos_identity := {cos ~w^2+sin ~w^2=1}$
  122. compact(u,in_cos_identity);
  123. \end{verbatim}
  124. Also the full rule syntax with the replacement operator is allowed here.
  125. \end{Package}
  126. \begin{Package}{CONTFR}
  127. \index{continued fraction}
  128. Author: Herbert Melenk\\
  129. This package provides for the simultaneous approximation of a real number
  130. by a continued fraction and a rational number with optional user
  131. controlled precision (an upper bound for the denominator).
  132. To use this package, the \name{misc} package should be loaded. One can then
  133. use the operator \name{continued\_fraction} to approximate the real
  134. number by a continued fraction. This operator has one or two arguments, the
  135. number to be converted and an optional precision. The result is a list of
  136. two elements: the first is the rational value of the approximation and the
  137. second the list of terms of the continued fraction that represent the same
  138. value according to the definition \verb&t0 +1/(t1 + 1/(t2 + ...))&. The
  139. second optional parameter \name{size} is an upper bound on the absolute
  140. value of the result denominator. If omitted, the approximation is performed
  141. up to the current system precision.
  142. \begin{Examples}
  143. continued\_fraction pi; &
  144. \begin{multilineoutput}{6cm}
  145. 1146408
  146. \{---------,\{3,7,15,1,292,1,1,1,2,1\}\}
  147. 364913
  148. \end{multilineoutput} \\
  149. continued\_fraction(pi,100); &
  150. \begin{multilineoutput}{6cm}
  151. 22
  152. \{----,\{3,7\}\}
  153. 7
  154. \end{multilineoutput}
  155. \end{Examples}
  156. \end{Package}
  157. \begin{Package}{CRACK}
  158. \index{differential equation}
  159. Authors: Andreas Brand, Thomas Wolf\\
  160. CRACK is a package for solving overdetermined systems of partial or
  161. ordinary differential equations (PDEs, ODEs). Examples of programs which
  162. make use of CRACK for investigating ODEs (finding symmetries, first
  163. integrals, an equivalent Lagrangian or a ``differential factorization'') are
  164. included.
  165. \end{Package}
  166. \begin{Package}{CVIT}
  167. \index{Dirac algebra}
  168. Authors: V.Ilyin, A.Kryukov, A.Rodionov, A.Taranov\\
  169. This package provides an alternative method for computing traces of Dirac
  170. gamma matrices, based on an algorithm by Cvitanovich that treats gamma
  171. matrices as 3-j symbols.
  172. \end{Package}
  173. \begin{Package}{DEFINT}
  174. \index{definite integration}
  175. Authors: Kerry Gaskell, Stanley M. Kameny, Winfried Neun\\
  176. This package finds the definite integral of an expression in a stated
  177. interval. It uses several techniques, including an innovative approach
  178. based on the Meijer G-function, and contour integration.
  179. \end{Package}
  180. \begin{Package}{DESIR}
  181. \index{differential equation}
  182. Authors: C. Dicrescenzo, F. Richard-Jung, E. Tournier\\
  183. This package enables the basis of formal solutions to be computed for an
  184. ordinary homogeneous differential equation with polynomial coefficients
  185. over Q of any order, in the neighborhood of zero (regular or irregular
  186. singular point, or ordinary point).
  187. \end{Package}
  188. \begin{Package}{DFPART}
  189. \index{partial derivative}
  190. Author: Herbert Melenk\\
  191. This package supports computations with total and partial derivatives of
  192. formal function objects. Such computations can be useful in the context
  193. of differential equations or power series expansions.
  194. \end{Package}
  195. \begin{Package}{DUMMY}
  196. \index{dummy variable}
  197. Author: Alain Dresse\\
  198. This package allows a user to find the canonical form of expressions
  199. involving dummy variables. In that way, the simplification of
  200. polynomial expressions can be fully done. The indeterminates are general
  201. operator objects endowed with as few properties as possible. In that way
  202. the package may be used in a large spectrum of applications.
  203. \end{Package}
  204. \begin{Package}{EXCALC}
  205. \index{exterior calculus}\index{differential calculus}
  206. \index{differential form}
  207. Author: Eberhard Schruefer\\
  208. The \name{excalc} package is designed for easy use by all who are familiar
  209. with the calculus of Modern Differential Geometry. The program is currently
  210. able to handle scalar-valued exterior forms, vectors and operations between
  211. them, as well as non-scalar valued forms (indexed forms). It is thus an ideal
  212. tool for studying differential equations, doing calculations in general
  213. relativity and field theories, or doing simple things such as calculating the
  214. Laplacian of a tensor field for an arbitrary given frame.
  215. \end{Package}
  216. \begin{Package}{FPS}
  217. \index{power series} \index{Laurent-Puiseux series}
  218. Authors: Wolfram Koepf, Winfried Neun\\
  219. This package can expand a specific class of functions into their
  220. corresponding Laurent-Puiseux series.
  221. \end{Package}
  222. \begin{Package}{FIDE}
  223. Author: Richard Liska\\
  224. This package performs automation of the process of numerically
  225. solving partial differential equations systems (PDES) by means of
  226. computer algebra. For PDES solving, the finite difference method is applied.
  227. The computer algebra system REDUCE and the numerical programming
  228. language FORTRAN are used in the presented methodology. The main aim of
  229. this methodology is to speed up the process of preparing numerical
  230. programs for solving PDES. This process is quite often, especially for
  231. complicated systems, a tedious and time consuming task.
  232. \end{Package}
  233. \begin{Package}{GENTRAN}
  234. \index{code generation}\index{FORTRAN}\index{C}
  235. Author: Barbara L. Gates\\
  236. This package is an automatic code GENerator and TRANslator. It constructs
  237. complete numerical programs based on sets of algorithmic specifications and
  238. symbolic expressions. Formatted FORTRAN, RATFOR or C code can be generated
  239. through a series of interactive commands or under the control of a template
  240. processing routine. Large expressions can be automatically segmented into
  241. subexpressions of manageable size, and a special file-handling mechanism
  242. maintains stacks of open I/O channels to allow output to be sent to any
  243. number of files simultaneously and to facilitate recursive invocation of the
  244. whole code generation process.
  245. \end{Package}
  246. \begin{Package}{IDEALS}
  247. \index{polynomial}\index{Groebner}\index{commutative algebra}
  248. \index{ideal}
  249. Author: Herbert Melenk\\
  250. This package implements the basic arithmetic for polynomial ideals by
  251. exploiting the Groebner bases package of REDUCE. In order to save
  252. computing time all intermediate Groebner bases are stored internally such
  253. that time consuming repetitions are inhibited.
  254. \end{Package}
  255. \begin{Package}{INEQ}
  256. \index{inequality}
  257. Author: Herbert Melenk\\
  258. This package supports the operator \name{ineq\_solve} that
  259. tries to solves single inequalities and sets of coupled inequalities.
  260. \end{Package}
  261. \begin{Package}{INVBASE}
  262. Authors: A.Yu. Zharkov and Yu.A. Blinkov\\
  263. Involutive bases are a new tool for solving problems in connection with
  264. multivariate polynomials, such as solving systems of polynomial equations
  265. and analyzing polynomial ideals. An involutive basis of polynomial ideal
  266. is nothing but a special form of a redundant Groebner basis. The
  267. construction of involutive bases reduces the problem of solving polynomial
  268. systems to simple linear algebra.
  269. \end{Package}
  270. \begin{Package}{LAPLACE}
  271. \index{transform}
  272. Authors: C. Kazasov, M. Spiridonova, V. Tomov\\
  273. This package can calculate ordinary and inverse Laplace transforms of
  274. expressions. Documentation is in plain text.
  275. \end{Package}
  276. \begin{Package}{LIE}
  277. Authors: Carsten and Franziska Sch{\"o}bel\\
  278. \name{Lie} is a package of functions for the classification of real
  279. n-dimensional Lie algebras. It consists of two modules: \name{liendmc1}
  280. and \name{lie1234}. With the help of the functions in the \name{liendmcl}
  281. module, real n-dimensional Lie algebras $L$ with a derived algebra
  282. $L^{(1)}$ of dimension 1 can be classified.
  283. \end{Package}
  284. \begin{Package}{MODSR}
  285. \index{modular polynomial}
  286. Author: Herbert Melenk\\
  287. This package supports solve (M\_SOLVE) and roots (M\_ROOTS) operators for
  288. modular polynomials and modular polynomial systems. The moduli need not
  289. be primes. M\_SOLVE requires a modulus to be set. M\_ROOTS takes the
  290. modulus as a second argument. For example:
  291. \begin{verbatim}
  292. on modular; setmod 8;
  293. m_solve(2x=4); -> {{X=2},{X=6}}
  294. m_solve({x^2-y^3=3});
  295. -> {{X=0,Y=5}, {X=2,Y=1}, {X=4,Y=5}, {X=6,Y=1}}
  296. m_solve({x=2,x^2-y^3=3}); -> {{X=2,Y=1}}
  297. off modular;
  298. m_roots(x^2-1,8); -> {1,3,5,7}
  299. m_roots(x^3-x,7); -> {0,1,6}
  300. \end{verbatim}
  301. \end{Package}
  302. \begin{Package}{NCPOLY}
  303. \index{non-commutativity}
  304. Authors: Herbert Melenk, Joachim Apel\\
  305. This package allows the user to set up automatically a consistent
  306. environment for computing in an algebra where the non--commutativity is
  307. defined by Lie-bracket commutators. The package uses the REDUCE
  308. \name{noncom} mechanism for elementary polynomial arithmetic; the commutator
  309. rules are automatically computed from the Lie brackets.
  310. \end{Package}
  311. \begin{Package}{ORTHOVEC}
  312. \index{vector algebra}\index{vector calculus}\index{Laplacian}\index{Taylor}
  313. \index{cross product}\index{dot product}\index{div}\index{grad}\index{curl}
  314. Author: James W. Eastwood\\
  315. \name{orthovec} is a collection of REDUCE procedures and operations which
  316. provide a simple-to-use environment for the manipulation of scalars and
  317. vectors. Operations include addition, subtraction, dot and cross
  318. products, division, modulus, div, grad, curl, laplacian, differentiation,
  319. integration, and Taylor expansion.
  320. \end{Package}
  321. \begin{Package}{PHYSOP}
  322. Author: Mathias Warns\\
  323. This package has been designed to meet the requirements of theoretical
  324. physicists looking for a computer algebra tool to perform complicated
  325. calculations in quantum theory with expressions containing operators.
  326. These operations consist mainly of the calculation of commutators between
  327. operator expressions and in the evaluations of operator matrix elements in
  328. some abstract space.
  329. \end{Package}
  330. \begin{Package}{PM}
  331. \index{pattern matching}
  332. Author: Kevin McIsaac\\
  333. PM is a general pattern matcher similar in style to those found in systems
  334. such as SMP and Mathematica, and is based on the pattern matcher described
  335. in Kevin McIsaac, ``Pattern Matching Algebraic Identities'', SIGSAM Bulletin,
  336. 19 (1985), 4-13.
  337. \end{Package}
  338. \begin{Package}{RANDPOLY}
  339. \index{random polynomial}
  340. Author: Francis J. Wright\\
  341. This package is based on a port of the Maple random polynomial
  342. generator together with some support facilities for the generation
  343. of random numbers and anonymous procedures.
  344. \end{Package}
  345. \begin{Package}{REACTEQN}
  346. \index{chemical reaction}
  347. Author: Herbert Melenk\\
  348. This package allows a user to transform chemical reaction systems into
  349. ordinary differential equation systems (ODE) corresponding to the laws of
  350. pure mass action.
  351. \end{Package}
  352. \begin{Package}{RESET}
  353. Author: John Fitch\\
  354. This package defines a command command RESETREDUCE that works through the
  355. history of previous commands, and clears any values which have been
  356. assigned, plus any rules, arrays and the like. It also sets the various
  357. switches to their initial values. It is not complete, but does work for
  358. most things that cause a gradual loss of space. It would be relatively
  359. easy to make it interactive, so allowing for selective resetting.
  360. \end{Package}
  361. \begin{Package}{RESIDUE}
  362. Author: Wolfram Koepf\\
  363. This package supports the calculation of residues of arbitrary
  364. expressions.
  365. \end{Package}
  366. \begin{Package}{RLFI}
  367. \index{output}\index{TEX}
  368. Author: Richard Liska\\
  369. This package
  370. adds \begin{TEX}\LaTeX \end{TEX}\begin{INFO}LaTeX \end{INFO} syntax
  371. to REDUCE. Text generated by REDUCE in this mode can be directly
  372. used in \begin{TEX}\LaTeX \end{TEX} \begin{INFO}LaTeX \end{INFO} source
  373. documents. Various
  374. mathematical constructions are supported by the interface including
  375. subscripts, superscripts, font changing, Greek letters, divide-bars,
  376. integral and sum signs, derivatives, and so on.
  377. \end{Package}
  378. \begin{Package}{SCOPE}
  379. \index{code generation}\index{optimization}
  380. Author: J.A. van Hulzen\\
  381. SCOPE is a package for the production of an optimized form of a set of
  382. expressions. It applies an heuristic search for common (sub)expressions
  383. to almost any set of proper REDUCE assignment statements. The output is
  384. obtained as a sequence of assignment statements. \name{gentran} is used to
  385. facilitate expression output.
  386. \end{Package}
  387. \begin{Package}{SETS}
  388. Author: Francis J. Wright\\
  389. The SETS package provides algebraic-mode support for set operations on
  390. lists regarded as sets (or representing explicit sets) and on implicit
  391. sets represented by identifiers.
  392. \end{Package}
  393. \begin{Package}{SPDE}
  394. \index{differential equation}\index{Lie symmetry}
  395. Author: Fritz Schwartz \\
  396. The package \name{spde} provides a set of functions which may be used to
  397. determine the symmetry group of Lie- or point-symmetries of a given system of
  398. partial differential equations. In many cases the determining system is
  399. solved completely automatically. In other cases the user has to provide
  400. additional input information for the solution algorithm to terminate.
  401. \end{Package}
  402. \begin{Package}{SYMMETRY}
  403. Author: Karin Gatermann\\
  404. This package computes symmetry-adapted bases and block diagonal forms of
  405. matrices which have the symmetry of a group. The package is the
  406. implementation of the theory of linear representations for small finite
  407. groups such as the dihedral groups.
  408. \end{Package}
  409. \begin{Package}{TPS}
  410. \index{power series}\index{Taylor series}
  411. Authors: Alan Barnes, Julian Padget\\
  412. This package implements formal Laurent series expansions in one variable
  413. using the domain mechanism of REDUCE. This means that power series
  414. objects can be added, multiplied, differentiated etc., like other first
  415. class objects in the system. A lazy evaluation scheme is used and thus
  416. terms of the series are not evaluated until they are required for printing
  417. or for use in calculating terms in other power series. The series are
  418. extendible giving the user the impression that the full infinite series is
  419. being manipulated. The errors that can sometimes occur using series that
  420. are truncated at some fixed depth (for example when a term in the required
  421. series depends on terms of an intermediate series beyond the truncation
  422. depth) are thus avoided.
  423. \end{Package}
  424. \begin{Package}{TRI}
  425. \index{output}\index{TEX}
  426. Author: Werner Antweiler\\
  427. This package provides facilities written in REDUCE-Lisp for typesetting
  428. REDUCE formulas
  429. using \begin{TEX}\TeX. \end{TEX} \begin{INFO}TeX. \end{INFO} The
  430. TeX-REDUCE-Interface incorporates three levels
  431. of \begin{TEX}\TeX \end{TEX} \begin{INFO}TeX \end{INFO} output:
  432. without line breaking, with line breaking, and
  433. with line breaking plus indentation.
  434. \end{Package}
  435. \begin{Package}{TRIGSIMP}
  436. \index{simplification}
  437. Author: Wolfram Koepf\\
  438. TRIGSIMP is a useful tool for all kinds of trigonometric and hyperbolic
  439. simplification and factorization. There are three procedures included in
  440. TRIGSIMP: \name{trigsimp}, \name{trigfactorize} and \name{triggcd}. The
  441. first is for finding simplifications of trigonometric or hyperbolic
  442. expressions with many options, the second for factorizing them and the
  443. third for finding the greatest common divisor of two trigonometric or
  444. hyperbolic polynomials.
  445. \end{Package}
  446. \begin{Package}{XCOLOR}
  447. \index{high energy physics}
  448. Author: A. Kryukov\\
  449. This package calculates the color factor in non-abelian gauge field
  450. theories using an algorithm due to Cvitanovich.
  451. \end{Package}
  452. \begin{Package}{XIDEAL}
  453. \index{Groebner basis}
  454. Author: David Hartley\\
  455. \name{xideal} constructs Groebner bases for solving the left ideal
  456. membership problem: Groebner left ideal bases or GLIBs. For graded
  457. ideals, where each form is homogeneous in degree, the distinction between
  458. left and right ideals vanishes. Furthermore, if the generating forms are
  459. all homogeneous, then the Groebner bases for the non-graded and graded
  460. ideals are identical. In this case, \name{xideal} is able to save time by
  461. truncating the Groebner basis at some maximum degree if desired.
  462. \end{Package}
  463. \begin{Package}{WU}
  464. \index{polynomial}\index{Wu-Wen-Tsun algorithm}
  465. Author: Russell Bradford\\
  466. This is a simple implementation of the Wu algorithm implemented in REDUCE
  467. working directly from ``A Zero Structure Theorem for
  468. Polynomial-Equations-Solving,'' Wu Wen-tsun, Institute of Systems Science,
  469. Academia Sinica, Beijing.
  470. \end{Package}
  471. \begin{Package}{ZEILBERG}
  472. \index{summation}
  473. Authors: Gregor St{\"o}lting and Wolfram Koepf\\
  474. This package is a careful implementation of the Gosper and Zeilberger
  475. algorithms for indefinite and definite summation of hypergeometric terms,
  476. respectively. Extensions of these algorithms are also included that are
  477. valid for ratios of products of powers,
  478. factorials,\begin{TEX}$\Gamma$ \end{TEX} \begin{INFO}gamma \end{INFO}function
  479. terms, binomial coefficients, and shifted factorials that are
  480. rational-linear in their arguments.
  481. \end{Package}
  482. \begin{Package}{ZTRANS}
  483. Authors: Wolfram Koepf, Lisa Temme\\
  484. This package is an implementation of the Z-transform of a sequence.
  485. This is the discrete analogue of the Laplace Transform.
  486. \end{Package}
  487.