This file is indexed.

/usr/lib/open-axiom/input/triglim.input is in open-axiom-test 1.4.1+svn~2626-2ubuntu2.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

 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
--Copyright The Numerical Algorithms Group Limited MCMXCII.

--% 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))