This file is indexed.

/usr/share/axiom-20140801/input/equation.input is in axiom-test 20140801-6.

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
)set break resume
)spool equation.output
)set message test on
)set message auto off
)clear all

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

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

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

--S 4 of 12
swap %
--R 
--R
--R            4        2     3           3      2      2    4      2
--R   (4)  (- x  + 12x)y  + 6x  - 4= (- 6x  + 13x  + 4)y  + x  + 13x  - 12x
--R                                          Type: Equation(Polynomial(Integer))
--E 4

--S 5 of 12
% + 4
--R 
--R
--R            4        2     3       3      2      2    4      2
--R   (5)  (- x  + 12x)y  + 6x = (- 6x  + 13x  + 4)y  + x  + 13x  - 12x + 4
--R                                          Type: Equation(Polynomial(Integer))
--E 5

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

--S 7 of 12
leftZero %
--R 
--R
--R             4     3      2            2    4     3      2
--R   (7)  0= (x  - 6x  + 13x  - 12x + 4)y  + x  - 6x  + 13x  - 12x + 4
--R                                          Type: Equation(Polynomial(Integer))
--E 7

--S 8 of 12
swap %
--R 
--R
--R          4     3      2            2    4     3      2
--R   (8)  (x  - 6x  + 13x  - 12x + 4)y  + x  - 6x  + 13x  - 12x + 4= 0
--R                                          Type: Equation(Polynomial(Integer))
--E 8

--S 9 of 12
factor lhs %
--R 
--R
--R               2       2  2
--R   (9)  (x - 2) (x - 1) (y  + 1)
--R                                          Type: Factored(Polynomial(Integer))
--E 9

--S 10 of 12
factorAndSplit eq
--R 
--R
--R                             2
--R   (10)  [x - 2= 0,x - 1= 0,y  + 1= 0]
--R                                    Type: List(Equation(Polynomial(Integer)))
--E 10

--S 11 of 12
inv (eq :: EQ FRAC POLY INT)
--R 
--R
--R                             1                                1
--R   (11)  - ------------------------------------= - ----------------------
--R              3      2      2    4      2            4        2     3
--R           (6x  - 13x  - 4)y  - x  - 13x  + 12x    (x  - 12x)y  - 6x  + 4
--R                                Type: Equation(Fraction(Polynomial(Integer)))
--E 11

--S 12 of 12
- %
--R 
--R
--R                           1                              1
--R   (12)  ------------------------------------= ----------------------
--R            3      2      2    4      2          4        2     3
--R         (6x  - 13x  - 4)y  - x  - 13x  + 12x  (x  - 12x)y  - 6x  + 4
--R                                Type: Equation(Fraction(Polynomial(Integer)))
--E 12
)spool
)lisp (bye)