/usr/share/axiom-20120501/input/limit.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 | )set break resume
)spool limit.output
)set message test on
)set message auto off
)clear all
--S 1 of 15
limit((x^2-4)/(x-2),x=2)
--R
--R
--R (1) 4
--R Type: Union(OrderedCompletion(Fraction(Polynomial(Integer))),...)
--E 1
--S 2 of 15
limit(sqrt(9-x^2),x=-4)
--R
--R
--R (2) "failed"
--R Type: Union("failed",...)
--E 2
--S 3 of 15
limit(sqrt(9-x^2),x=-3)
--R
--R
--R (3) [leftHandLimit= "failed",rightHandLimit= 0]
--IType: Union(Record(leftHandLimit: Union(OrderedCompletion(...
--E 3
--S 4 of 15
limit(sqrt(9-x^2),x=-2)
--R
--R
--R +-+
--R (4) \|5
--R Type: Union(OrderedCompletion(Expression(Integer)),...)
--E 4
--S 5 of 15
limit(sqrt(9-x^2),x=0)
--R
--R
--R (5) 3
--R Type: Union(OrderedCompletion(Expression(Integer)),...)
--E 5
--S 6 of 15
limit(sqrt(9-x^2),x=2)
--R
--R
--R +-+
--R (6) \|5
--R Type: Union(OrderedCompletion(Expression(Integer)),...)
--E 6
--S 7 of 15
limit(sqrt(9-x^2),x=3)
--R
--R
--R (7) [leftHandLimit= 0,rightHandLimit= "failed"]
--IType: Union(Record(leftHandLimit: Union(OrderedCompletion(...
--E 7
--S 8 of 15
limit(sqrt(9-x^2),x=4)
--R
--R
--R (8) "failed"
--R Type: Union("failed",...)
--E 8
--S 9 of 15
limit(1/x^2,x=0)
--R
--R
--R (9) + infinity
--R Type: Union(OrderedCompletion(Fraction(Polynomial(Integer))),...)
--E 9
--S 10 of 15
limit(-1/(x-1)^2,x=1)
--R
--R
--R (10) - infinity
--R Type: Union(OrderedCompletion(Fraction(Polynomial(Integer))),...)
--E 10
--S 11 of 15
limit(1/x,x=0)
--R
--R
--R (11) [leftHandLimit= - infinity,rightHandLimit= + infinity]
--IType: Union(Record(leftHandLimit: Union(OrderedCompletion(...
--E 11
--S 12 of 15
limit(1/x,x=%plusInfinity)
--R
--R
--R (12) 0
--R Type: Union(OrderedCompletion(Fraction(Polynomial(Integer))),...)
--E 12
--S 13 of 15
limit(2+(1/x^2),x=%plusInfinity)
--R
--R
--R (13) 2
--R Type: Union(OrderedCompletion(Fraction(Polynomial(Integer))),...)
--E 13
)clear all
--S 14 of 15
f := exp(n) * (sin(1/n + exp(-n)) - sin(1/n))
--R
--R
--R - n
--R n n %e + 1 n 1
--R (1) %e sin(-----------) - %e sin(-)
--R n n
--R Type: Expression(Integer)
--E 14
--S 15 of 15
limit(f,n=%plusInfinity)
--R
--R
--R (2) "failed"
--R Type: Union("failed",...)
--E 15
)spool
)lisp (bye)
|