aboutsummaryrefslogtreecommitdiff
path: root/src/input/mfinfact.input.pamphlet
blob: 8ca0f07bd930325523ea8fd3820fcb6e84c2c809 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
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}