/usr/share/axiom-20120501/input/i2e.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 | )set break resume
)spool i2e.output
)set message test on
)set message auto off
)clear all
--S 1 of 6
ex:=sin(cos(x+2)+3)+exp(x+2)+sqrt(x)
--R
--R +-+ x + 2
--R (1) sin(cos(x + 2) + 3) + \|x + %e
--R Type: Expression(Integer)
--E 1
--S 2 of 6
exi:=ex::InputForm
--R
--R (2) (+ (sin (+ (cos (+ x 2)) 3)) (+ (** x (/ 1 2)) (exp (+ x 2))))
--R Type: InputForm
--E 2
--S 3 of 6
d1:=destruct exi
--R
--R (3) [+,(sin (+ (cos (+ x 2)) 3)),(+ (** x (/ 1 2)) (exp (+ x 2)))]
--R Type: List(InputForm)
--E 3
--S 4 of 6
l2:=[first d1, first rest d1, first rest destruct first rest rest d1]
--R
--R (4) [+,(sin (+ (cos (+ x 2)) 3)),(** x (/ 1 2))]
--R Type: List(InputForm)
--E 4
--S 5 of 6
inf:=convert l2
--R
--R (5) (+ (sin (+ (cos (+ x 2)) 3)) (** x (/ 1 2)))
--R Type: InputForm
--E 5
--S 6 of 6
interpret inf
--R
--R +-+
--R (6) sin(cos(x + 2) + 3) + \|x
--R Type: Expression(Integer)
--E 6
)spool
)lisp (bye)
|