aboutsummaryrefslogtreecommitdiff
path: root/src/input/triglim.input.pamphlet
blob: 88aed759260b6e96ff05ebec869fc1ec96453011 (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
\documentclass{article}
\usepackage{axiom}
\begin{document}
\title{\$SPAD/src/input triglim.input}
\author{Clifton J. Williamson}
\maketitle
\begin{abstract}
\end{abstract}
\eject
\tableofcontents
\eject
\section{License}
<<license>>=
--Copyright The Numerical Algorithms Group Limited MCMXCII.
@
<<*>>=
<<license>>

--% Limits involving trig and inverse trig functions
-- Some of these limits were taken from bug reports submitted before
-- changes were made to limit and related series packages.
-- Author: Clifton J. Williamson
-- Date Created: 27 August 1992
-- Date Last Updated: 27 August 1992
-- Keywords: limit, trigonometric function, inverse trigonometric function
-- References:

)clear all

-- in each case, the argument to 'atan' has a pole and the left-hand
-- and right-hand limits differ

limit(atan(1/sin(x)),x = 0)

limit(atan(sqrt(1 - x**2)/x),x = 0)

limit(atan(-sin(x)/(cos(x) + a)),x = acos(-a))

limit(atan(sin(x)/(cos(x) + a)),x = acos(-a))

-- we'll get these next two if sqrt(1 - a**2) is considered to be
-- positive by SIGNEF

limit(atan(1/(cos(x) + a)),x = acos(-a))

limit(atan(1/(sin(x) + a)),x = asin(-a))
@
\eject
\begin{thebibliography}{99}
\bibitem{1} nothing
\end{thebibliography}
\end{document}