From ab8cc85adde879fb963c94d15675783f2cf4b183 Mon Sep 17 00:00:00 2001 From: dos-reis Date: Tue, 14 Aug 2007 05:14:52 +0000 Subject: Initial population. --- src/input/exdiff.input.pamphlet | 52 +++++++++++++++++++++++++++++++++++++++++ 1 file changed, 52 insertions(+) create mode 100644 src/input/exdiff.input.pamphlet (limited to 'src/input/exdiff.input.pamphlet') 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} -- cgit v1.2.3