aboutsummaryrefslogtreecommitdiff
path: root/src/input/defintef.input.pamphlet
blob: ad2b8449d151cd589d081bc3eb98afce485eebdd (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
42
43
44
45
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input defintef.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
\section{License}
<<license>>=
--Copyright The Numerical Algorithms Group Limited 1991.
@
<<*>>=
<<license>>
-- defintef.input   -- modified, last version was from Aug 21 1992
-------------------------------- defintef.input -------------------------------

)clear all

-- Evans and Johnson, in their "Uses of technology in the mathematics
-- curriculum" workbook list a number of
-- "integrals that your computer can't do".
-- int(sin(x)^3/(sin(x)^3+cos(x)^3),x=0..Pi/2) is one of them.
sin(x)**3/(sin(x)**3+cos(x)**3)
integrate(%, x = 0..%pi/2, "noPole")

x**2/(1+x**3)
integrate(%, x=0..%plusInfinity)

exp(-x**2)*log(x)**2
integrate(%, x=0..%plusInfinity)

x * asin(x/(x+1))
integrate(%, x=0..1)


@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}