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

-- Input for page ExSeriesSubstitution
)clear all

f := taylor(exp(x))
eval(f,1.0)

-- Input for page ExSeriesConvert
)clear all

series(sin(a*x),x = 0)
series(sin(a*x),a = %pi/4)

-- Input for page ExSeriesFunctions
)clear all

f := series(1/(1-x),x = 0)
g := log(f)
exp(g)

-- Input for page ExSeriesManipulate
)clear all

f := series(1/(1-x),x = 0)
f ** 2
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}