aboutsummaryrefslogtreecommitdiff
path: root/src/input/exint.input.pamphlet
diff options
context:
space:
mode:
authordos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
committerdos-reis <gdr@axiomatics.org>2007-08-14 05:14:52 +0000
commitab8cc85adde879fb963c94d15675783f2cf4b183 (patch)
treec202482327f474583b750b2c45dedfc4e4312b1d /src/input/exint.input.pamphlet
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/input/exint.input.pamphlet')
-rw-r--r--src/input/exint.input.pamphlet64
1 files changed, 64 insertions, 0 deletions
diff --git a/src/input/exint.input.pamphlet b/src/input/exint.input.pamphlet
new file mode 100644
index 00000000..8701da89
--- /dev/null
+++ b/src/input/exint.input.pamphlet
@@ -0,0 +1,64 @@
+\documentclass{article}
+\usepackage{axiom}
+\begin{document}
+\title{\$SPAD/src/input exint.input}
+\author{The Axiom Team}
+\maketitle
+\begin{abstract}
+\end{abstract}
+\eject
+\tableofcontents
+\eject
+<<*>>=
+
+-- Input for page ExIntRationalWithRealParameter
+)clear all
+
+integrate(1/(x**2 + a),x)
+
+-- Input for page ExIntRationalFunction
+)clear all
+
+integrate((x**2+2*x+1)/((x+1)**6+1),x)
+
+-- Input for page ExIntAlgebraicRelation
+)clear all
+
+integrate(tan(atan(x)/3),x)
+
+-- Input for page ExIntRationalWithComplexParameter
+)clear all
+
+complexIntegrate(1/(x**2 + a),x)
+
+-- Input for page ExIntNoSolution
+)clear all
+
+integrate(log(1 + sqrt(a*x + b)) / x,x)
+
+-- Input for page ExIntTwoSimilarIntegrands
+)clear all
+
+integrate(x**3 / (a+b*x)**(1/3),x)
+integrate(1 / (x**3 * (a+b*x)**(1/3)),x)
+
+-- Input for page ExIntRadicalOfTranscendental
+)clear all
+
+integrate((x + 1) / (x * (x + log x)**(3/2)),x)
+
+-- Input for page ExIntNonElementary
+)clear all
+
+integrate(exp(-x**2) * erf(x) / (erf(x)**3 - erf(x)**2 - erf(x) + 1),x)
+
+-- Input for page ExIntTrig
+)clear all
+
+integrate((sinh(1+sqrt(x+b))+2*sqrt(x+b))/(sqrt(x+b)*(x+cosh(1+sqrt(x+b)))),x)
+@
+\eject
+\begin{thebibliography}{99}
+\bibitem{1} nothing
+\end{thebibliography}
+\end{document}