This file is indexed.

/usr/share/axiom-20120501/input/lodesys.input is in axiom-test 20120501-8.

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
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
)set break resume
)spool lodesys.output
)set message test on
)set message auto off
)clear all
 
--S 1 of 13
M := matrix [[ 1+4*t,  -5*t,   7*t,  -8*t,   8*t,  -6*t],_
             [ -10*t, 1+9*t, -14*t,  16*t, -16*t,  12*t],_
             [  -5*t,   5*t, 1-8*t,   8*t,  -8*t,   6*t],_
             [  10*t, -10*t,  14*t,1-17*t,  16*t, -12*t],_
             [   5*t,  -5*t,   7*t,  -8*t, 1+7*t,  -6*t],_
             [  -5*t,   5*t,  -7*t,   8*t,  -8*t, 1+5*t]]
--R 
--R
--R        +4t + 1   - 5t      7t       - 8t       8t     - 6t +
--R        |                                                   |
--R        |- 10t   9t + 1   - 14t       16t     - 16t    12t  |
--R        |                                                   |
--R        | - 5t     5t    - 8t + 1     8t       - 8t     6t  |
--R   (1)  |                                                   |
--R        | 10t    - 10t     14t     - 17t + 1   16t    - 12t |
--R        |                                                   |
--R        |  5t     - 5t      7t       - 8t     7t + 1   - 6t |
--R        |                                                   |
--R        + - 5t     5t      - 7t       8t       - 8t   5t + 1+
--R                                            Type: Matrix(Polynomial(Integer))
--E 1

--S 2 of 13
sol := solve(inv(t**2) * M, t)
--R 
--R
--R   (2)
--R           1          1         1        1       1         1
--R         - -        - -       - -      - -     - -       - -
--R      5    t     5    t    5    t   5    t  5    t    5    t
--R   [[t %e   ,- 2t %e   ,- t %e   ,2t %e   ,t %e   ,- t %e   ],
--R         1        1       1      1     1       1           1     1
--R       - -      - -     - -    - -   - -     - -         - -   - -
--R         t        t       t      t     t       t           t     t
--R     %e      4%e      %e    2%e    %e      %e         7%e    %e
--R    [-----,- ------,- -----,------,-----,- -----], [0,------,-----,0,0,0],
--R       t       5t       t      t     t       t          5t     t
--R              1       1               1         1               1           1
--R            - -     - -             - -       - -             - -         - -
--R              t       t               t         t               t           t
--R         8%e      %e             8%e        %e             6%e          %e
--R    [0,- ------,0,-----,0,0], [0,------,0,0,-----,0], [0,- ------,0,0,0,-----]]
--R           5t       t              5t         t              5t           t
--R                           Type: Union(List(Vector(Expression(Integer))),...)
--E 2

--S 3 of 13
[t**2 * map(h +-> D(h, t), v) - M * v for v in sol]
--R 
--R
--R   (3)
--R   [[0,0,0,0,0,0], [0,0,0,0,0,0], [0,0,0,0,0,0], [0,0,0,0,0,0], [0,0,0,0,0,0],
--R    [0,0,0,0,0,0]]
--R                                      Type: List(Vector(Expression(Integer)))
--E 3

--S 4 of 13
x := operator x
--R 
--R
--R   (4)  x
--R                                                          Type: BasicOperator
--E 4

--S 5 of 13
y := operator y
--R 
--R
--R   (5)  y
--R                                                          Type: BasicOperator
--E 5

--S 6 of 13
sys := [D(x t, t) = x t + sqrt 3 * y t, D(y t, t) = sqrt 3 * x t - y t]
--R 
--R
--R          ,      +-+             ,               +-+
--R   (6)  [x (t)= \|3 y(t) + x(t),y (t)= - y(t) + \|3 x(t)]
--R
--R                                    Type: List(Equation(Expression(Integer)))
--E 6

--S 7 of 13
solve(sys, [x, y], t).basis
--R 
--R
--R                 2t               - 2t
--R            2t %e       - 2t   3%e
--R   (7)  [[%e  ,----],[%e    ,- -------]]
--R                +-+               +-+
--R               \|3               \|3
--R                                      Type: List(Vector(Expression(Integer)))
--E 7

--S 8 of 13
v := vector [1, (-29*t + 19)/5, -1, t + 1, - 2*t + 3, -1]
--R 
--R
--R             29     19
--R   (8)  [1,- -- t + --,- 1,t + 1,- 2t + 3,- 1]
--R              5      5
--R                                  Type: Vector(Polynomial(Fraction(Integer)))
--E 8

--S 9 of 13
solp := solve(inv(t**2) * M, inv(t**2) * v, t).particular
--R 
--R
--R               19
--R   (9)  [- 1,- --,1,- 1,- 3,1]
--R                5
--R                                            Type: Vector(Expression(Integer))
--E 9

--S 10 of 13
t**2 * map(h +-> D(h, t), solp) - M * solp - v
--R 
--R
--R   (10)  [0,0,0,0,0,0]
--R                                            Type: Vector(Expression(Integer))
--E 10

--S 11 of 13
z := operator z
--R 
--R
--R   (11)  z
--R                                                          Type: BasicOperator
--E 11

--S 12 of 13
sys := [D(x t, t) = y t + z t + t, D(y t, t) = x t + z t, D(z t, t) = x t + y t]
--R 
--R
--R           ,                      ,                  ,
--R   (12)  [x (t)= z(t) + y(t) + t,y (t)= z(t) + x(t),z (t)= y(t) + x(t)]
--R
--R                                    Type: List(Equation(Expression(Integer)))
--E 12

--S 13 of 13
solve(sys, [x, y, z], t).particular
--R 
--R
--R          2t - 3 - 2t + 1 - 2t + 1
--R   (13)  [------,--------,--------]
--R             4       4        4
--R                                            Type: Vector(Expression(Integer))
--E 13
)spool 
)lisp (bye)