aboutsummaryrefslogtreecommitdiff
path: root/src/input/exdiff.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/exdiff.input.pamphlet
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/input/exdiff.input.pamphlet')
-rw-r--r--src/input/exdiff.input.pamphlet52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/input/exdiff.input.pamphlet b/src/input/exdiff.input.pamphlet
new file mode 100644
index 00000000..4cb4c7fe
--- /dev/null
+++ b/src/input/exdiff.input.pamphlet
@@ -0,0 +1,52 @@
+\documentclass{article}
+\usepackage{axiom}
+\begin{document}
+\title{\$SPAD/src/input exdiff.input}
+\author{The Axiom Team}
+\maketitle
+\begin{abstract}
+\end{abstract}
+\eject
+\tableofcontents
+\eject
+<<*>>=
+
+-- Input for page ExDiffBasic
+)clear all
+
+differentiate(sin(x) * exp(x**2),x)
+
+-- Input for page ExDiffSeveralVariables
+)clear all
+
+differentiate(sin(x) * tan(y)/(x**2 + y**2),x)
+differentiate(sin(x) * tan(y)/(x**2 + y**2),y)
+
+-- Input for page ExDiffMultipleI
+)clear all
+
+differentiate(sin(x)/(x**2 + y**2),[x,y])
+differentiate(sin(x)/(x**2 + y**2),[x,y,y])
+
+-- Input for page ExDiffMultipleII
+)clear all
+
+differentiate(cos(z)/(x**2 + y**3),[x,y,z],[1,2,3])
+
+-- Input for page ExDiffHigherOrder
+)clear all
+
+differentiate(exp(x**2),x,4)
+
+-- Input for page ExDiffFormalIntegral
+)clear all
+
+f := integrate(sqrt(1 + t**3),t)
+differentiate(f,t)
+differentiate(f * t**2,t)
+@
+\eject
+\begin{thebibliography}{99}
+\bibitem{1} nothing
+\end{thebibliography}
+\end{document}