aboutsummaryrefslogtreecommitdiff
path: root/src/input/mpoly.input.pamphlet
blob: e60d2e64144bc9f6ce46e06e40a8d65b31d24718 (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
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input MPOLY.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
<<*>>=

-- Input generated from MultivariatePolynomialXmpPage
)clear all

m : MPOLY([x,y],INT) := (x**2 - x*y**3 +3*y)**2
m :: MPOLY([y,x],INT)
p : MPOLY([x,y],POLY INT)
p := (a**2*x - b*y**2 + 1)**2
p :: POLY INT
% :: MPOLY([a,b],POLY INT)
q : UP(x, FRAC MPOLY([y,z],INT))
q := (x**2 - x*(z+1)/y +2)**2
q :: UP(z, FRAC MPOLY([x,y],INT))
q :: MPOLY([x,z], FRAC UP(y,INT))
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}