aboutsummaryrefslogtreecommitdiff
path: root/src/input/complex.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/complex.input.pamphlet
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/input/complex.input.pamphlet')
-rw-r--r--src/input/complex.input.pamphlet37
1 files changed, 37 insertions, 0 deletions
diff --git a/src/input/complex.input.pamphlet b/src/input/complex.input.pamphlet
new file mode 100644
index 00000000..43fb1d53
--- /dev/null
+++ b/src/input/complex.input.pamphlet
@@ -0,0 +1,37 @@
+\documentclass{article}
+\usepackage{axiom}
+\begin{document}
+\title{\$SPAD/src/input COMPLEX.input}
+\author{The Axiom Team}
+\maketitle
+\begin{abstract}
+\end{abstract}
+\eject
+\tableofcontents
+<<*>>=
+
+-- Input generated from ComplexXmpPage
+)clear all
+
+a := complex(4/3,5/2)
+b := complex(4/3,-5/2)
+a + b
+a - b
+a * b
+a / b
+% :: Fraction Complex Integer
+3.4 + 6.7 * %i
+conjugate a
+norm a
+real a
+imag a
+gcd(13 - 13*%i,31 + 27*%i)
+lcm(13 - 13*%i,31 + 27*%i)
+factor(13 - 13*%i)
+factor complex(2,0)
+@
+\eject
+\begin{thebibliography}{99}
+\bibitem{1} nothing
+\end{thebibliography}
+\end{document}