This file is indexed.

/usr/lib/open-axiom/input/nlode.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
31
32
33
34
35
36
37
38
39
40
--Copyright The Numerical Algorithms Group Limited 1994.
-------------------------- nlode.input --------------------------------
)cl all
-- this will be the unknown
y := operator y

-- some non-linear non-exact 1st order equations

deq := (sin y x - x / y(x)) * differentiate(y x, x) = 1
-- the result with no initial condition is a first integral
-- when equated to any constant
solve(deq, y, x)

deq := differentiate(y x, x) = y(x) / (x + y(x) * log y x)
solve(deq, y, x)
-- same with initial condition y(1) = 1
-- the result is a first integral if equated to 0
solve(deq, y, x = 1, [1])

deq := (exp(- 2 * y x) - 2 * x * y x) * differentiate(y x, x) = y x
solve(deq, y, x)

-- this one has an independent parameter w, initial condition y(0) = 0
deq := differentiate(y x, x) = w + y(x) / (1 - y x)
solve(deq, y, x = 0, [0])

-- Bernoulli equation: the result is a first integral when equated to
-- any constant, but it can be explicitly solved for y(x)
deq := x**2 * differentiate(y x, x) + 2 * x * y x - y(x)**3
solve(deq, y, x)

-- Riccati equation: the result is a first integral when equated to
-- any constant, but it can be explicitly solved for y(x)
deq := differentiate(y x,x) = 1 + x**2 - 2 * x * y x + y(x)**2
solve(deq, y, x)

-- Riccati equation: the result is a first integral when equated to
-- any constant, but it can be explicitly solved for y(x)
deq := x**2 * differentiate(y x,x) = -1 - x * y x + x**2 * y(x)**2
solve(deq, y, x)