This file is indexed.

/usr/lib/open-axiom/input/defintef.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
--Copyright The Numerical Algorithms Group Limited 1991.
-- defintef.input   -- modified, last version was from Aug 21 1992
-------------------------------- defintef.input -------------------------------

)clear all

-- Evans and Johnson, in their "Uses of technology in the mathematics
-- curriculum" workbook list a number of
-- "integrals that your computer can't do".
-- int(sin(x)^3/(sin(x)^3+cos(x)^3),x=0..Pi/2) is one of them.
sin(x)**3/(sin(x)**3+cos(x)**3)
integrate(%, x = 0..%pi/2, "noPole")

x**2/(1+x**3)
integrate(%, x=0..%plusInfinity)

exp(-x**2)*log(x)**2
integrate(%, x=0..%plusInfinity)

x * asin(x/(x+1))
integrate(%, x=0..1)