aboutsummaryrefslogtreecommitdiff
path: root/src/input/mfinfact.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/mfinfact.input.pamphlet
downloadopen-axiom-ab8cc85adde879fb963c94d15675783f2cf4b183.tar.gz
Initial population.
Diffstat (limited to 'src/input/mfinfact.input.pamphlet')
-rw-r--r--src/input/mfinfact.input.pamphlet41
1 files changed, 41 insertions, 0 deletions
diff --git a/src/input/mfinfact.input.pamphlet b/src/input/mfinfact.input.pamphlet
new file mode 100644
index 00000000..8ca0f07b
--- /dev/null
+++ b/src/input/mfinfact.input.pamphlet
@@ -0,0 +1,41 @@
+\documentclass{article}
+\usepackage{axiom}
+\begin{document}
+\title{\$SPAD/src/input mfinfact.input}
+\author{The Axiom Team}
+\maketitle
+\begin{abstract}
+\end{abstract}
+\eject
+\tableofcontents
+\eject
+\section{License}
+<<license>>=
+--Copyright The Numerical Algorithms Group Limited 1994.
+@
+<<*>>=
+<<license>>
+)clear all
+p:POLY PF 7 :=6*x +6*y +6*z +x^49+y^49+z^49
+factor p
+
+p:POLY PF 7:=(x+3*y+z)*(w*x+y)*(x*y+w**3)
+factor p
+pp:=p**2
+gcd(p,differentiate(p,x))
+
+p23:POLY PF 23:=(x+3*y+z)*(w*x+y)*(x*y+w**3)
+factor(p23)
+
+q: POLY PF 2 := y**4 + y**3 + x**4 + x**2
+factor q
+factor(q*(q+1))
+
+q:=x**2*y**2+z
+factor(q*(1+q))
+@
+\eject
+\begin{thebibliography}{99}
+\bibitem{1} nothing
+\end{thebibliography}
+\end{document}