aboutsummaryrefslogtreecommitdiff
path: root/src/input/de2re.input.pamphlet
blob: 024bc4a869af10707b0e29c567c760be4f14f299 (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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input de2re.input}
\author{The Axiom Team}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
\section{bugs}
The function |LinearOrdinaryDifferentialOperator| is undefined
<<bug1>>=
dn := D()$L
-- 4 well known differential operators
exp:= dn - 1
sincos := dn**2 + 1
airy := dn**2 - n
hermite := dn**2 - 2*n*dn + 1

-- the recurrences satisfied by the coefficients of their series solutions
--recurrence(exp, 0)
--recurrence(sincos, 0)
--recurrence(airy, 0)
--recurrence(airy, 1)
--recurrence(hermite, 0)

-- a non-trivial example from the GFUN tech. rep (Salvy & Zimmermann)
op := (335 * n**2 + 1290) * dn**2 + 1540 * n * dn + 468720
--recurrence(op, 0)
@
<<bugs>>=
---------------------------------- de2re.input -----------------------------
)cl all

P := UP(n, INT)
n := n::P

L := LODO1 P
<<bug1>>

@
\section{License}
<<license>>=
--Copyright The Numerical Algorithms Group Limited 1994.
@
<<*>>=
<<license>>
---------------------------------- de2re.input -----------------------------
)cl all

P := UP(n, INT)
n := n::P

L := LODO1 P
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}