This file is indexed.

/usr/share/axiom-20120501/input/eq.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
)set break resume
)spool eq.output
)set message test on
)set message auto off
)clear all

--S 1 of 12
eq1 := 3*x + 4*y = 5
--R 
--R
--R   (1)  4y + 3x= 5
--R                                          Type: Equation(Polynomial(Integer))
--E 1

--S 2 of 12
eq2 := 2*x + 2*y = 3
--R 
--R
--R   (2)  2y + 2x= 3
--R                                          Type: Equation(Polynomial(Integer))
--E 2

--S 3 of 12
lhs eq1
--R 
--R
--R   (3)  4y + 3x
--R                                                    Type: Polynomial(Integer)
--E 3

--S 4 of 12
rhs eq1
--R 
--R
--R   (4)  5
--R                                                    Type: Polynomial(Integer)
--E 4

--S 5 of 12
eq1 + eq2
--R 
--R
--R   (5)  6y + 5x= 8
--R                                          Type: Equation(Polynomial(Integer))
--E 5

--S 6 of 12
eq1 * eq2
--R 
--R
--R          2             2
--R   (6)  8y  + 14x y + 6x = 15
--R                                          Type: Equation(Polynomial(Integer))
--E 6

--S 7 of 12
2*eq2 - eq1
--R 
--R
--R   (7)  x= 1
--R                                          Type: Equation(Polynomial(Integer))
--E 7

--S 8 of 12
eq1**2
--R 
--R
--R           2             2
--R   (8)  16y  + 24x y + 9x = 25
--R                                          Type: Equation(Polynomial(Integer))
--E 8

--S 9 of 12
if x+1 = y then "equal" else "unequal"
--R 
--R
--R   (9)  "unequal"
--R                                                                 Type: String
--E 9

--S 10 of 12
eqpol := x+1 = y
--R 
--R
--R   (10)  x + 1= y
--R                                          Type: Equation(Polynomial(Integer))
--E 10

--S 11 of 12
if eqpol then "equal" else "unequal"
--R 
--R
--R   (11)  "unequal"
--R                                                                 Type: String
--E 11

--S 12 of 12
eqpol::Boolean
--R 
--R
--R   (12)  false
--R                                                                Type: Boolean
--E 12
)spool
)lisp (bye)