aboutsummaryrefslogtreecommitdiff
path: root/src/input/intrf.input.pamphlet
blob: 31e37a5deadf068507c2f8a1a41a0da6bdb626c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input intrf.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
\section{License}
<<license>>=
--Copyright The Numerical Algorithms Group Limited 1991.
@
<<*>>=
<<license>>

)clear all
-- some integration of rational functions
x + y/x
integrate(%,x)
-- we need not factor the denominator
(x+1)**2/((x+1)**6+1)
integrate(%,x)
(2*x**2+4)**4/(x**2-2)**5
integrate(%,x)
x**5/(x**4+x**2+1)**2
integrate(%,x)
1/(x**2 + a)
integrate(%,x)
x**2/(x**4-a**2)
integrate(%,x)
x/(1-x**3)
integrate(%,x)
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}