aboutsummaryrefslogtreecommitdiff
path: root/src/input/lodo1.input.pamphlet
blob: c7b4506848136f2059e360223b8fcfda8b581f68 (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
42
43
44
45
46
47
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input LODO1.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
<<*>>=


-- Input generated from LinearOrdinaryDifferentialOperatorOneXmpPage
)clear all


-- Input generated from ugxLinearOrdinaryDifferentialOperatorOneRatPage
)clear all

RFZ := Fraction UnivariatePolynomial('x, Integer)
x : RFZ := 'x
Dx : LODO1 RFZ := D()
b : LODO1 RFZ := 3*x**2*Dx**2 + 2*Dx + 1/x
a : LODO1 RFZ := b*(5*x*Dx + 7)
p := x**2 + 1/x**2
(a*b - b*a) p
ld := leftDivide(a,b)
a = b * ld.quotient + ld.remainder
rd := rightDivide(a,b)
a = rd.quotient * b + rd.remainder
rightQuotient(a,b)
rightRemainder(a,b)
leftExactQuotient(a,b)
e := leftGcd(a,b)
leftRemainder(a, e)
rightRemainder(a, e)
f := rightLcm(a,b)
rightRemainder(f, b)
leftRemainder(f, b)
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}