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

-- Input for page ExLimitBasic
)clear all

limit((x**2 - 3*x + 2)/(x**2 - 1),x = 1)

-- Input for page ExLimitComplexInfinite
)clear all

complexLimit((2 + z)/(1 - z),z = %infinity)
limit(sin(x)/x,x = %plusInfinity)
complexLimit(sin(x)/x,x = %infinity)

-- Input for page ExLimitOneSided
)clear all

limit(x * log(x),x = 0,"right")
limit(x * log(x),x = 0)

-- Input for page ExLimitTwoSided
)clear all

limit(sqrt(y**2)/y,y = 0)
limit(sqrt(1 - cos(t))/t,t = 0)

-- Input for page ExLimitInfinite
)clear all

limit(sqrt(3*x**2 + 1)/(5*x),x = %plusInfinity)
limit(sqrt(3*x**2 + 1)/(5*x),x = %minusInfinity)

-- Input for page ExLimitParameter
)clear all

limit(sinh(a*x)/tan(b*x),x = 0)

-- Input for page ExLimitRealComplex
)clear all

limit(z * sin(1/z),z = 0)
complexLimit(z * sin(1/z),z = 0)
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}