aboutsummaryrefslogtreecommitdiff
path: root/src/input/derham.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/derham.input.pamphlet
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/input/derham.input.pamphlet')
-rw-r--r--src/input/derham.input.pamphlet55
1 files changed, 55 insertions, 0 deletions
diff --git a/src/input/derham.input.pamphlet b/src/input/derham.input.pamphlet
new file mode 100644
index 00000000..760c0de1
--- /dev/null
+++ b/src/input/derham.input.pamphlet
@@ -0,0 +1,55 @@
+\documentclass{article}
+\usepackage{axiom}
+\begin{document}
+\title{\$SPAD/src/input DERHAM.input}
+\author{The Axiom Team}
+\maketitle
+\begin{abstract}
+\end{abstract}
+\eject
+\tableofcontents
+\eject
+<<*>>=
+
+-- Input generated from DeRhamComplexXmpPage
+)clear all
+
+coefRing := Integer
+lv : List Symbol := [x,y,z]
+der := DERHAM(coefRing,lv)
+R := Expression coefRing
+f : R := x**2*y*z-5*x**3*y**2*z**5
+g : R := z**2*y*cos(z)-7*sin(x**3*y**2)*z**2
+h : R :=x*y*z-2*x**3*y*z**2
+dx : der := generator(1)
+dy : der := generator(2)
+dz : der := generator(3)
+[dx,dy,dz] := [generator(i)$der for i in 1..3]
+alpha : der := f*dx + g*dy + h*dz
+beta : der := cos(tan(x*y*z)+x*y*z)*dx + x*dy
+exteriorDifferential alpha;
+exteriorDifferential %
+gamma := alpha * beta
+exteriorDifferential(gamma) - (exteriorDifferential(alpha)*beta - alpha * exteriorDifferential(beta))
+a : BOP := operator('a)
+b : BOP := operator('b)
+c : BOP := operator('c)
+sigma := a(x,y,z) * dx + b(x,y,z) * dy + c(x,y,z) * dz
+theta := a(x,y,z) * dx * dy + b(x,y,z) * dx * dz + c(x,y,z) * dy * dz
+totalDifferential(a(x,y,z))$der
+exteriorDifferential sigma
+exteriorDifferential theta
+one : der := 1
+g1 : der := a([x,t,y,u,v,z,e]) * one
+h1 : der := a([x,y,x,t,x,z,y,r,u,x]) * one
+exteriorDifferential g1
+exteriorDifferential h1
+coefficient(gamma, dx*dy)
+coefficient(gamma, one)
+coefficient(g1,one)
+@
+\eject
+\begin{thebibliography}{99}
+\bibitem{1} nothing
+\end{thebibliography}
+\end{document}