/usr/share/axiom-20120501/input/table.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 | )set break resume
)spool table.output
)set message test on
)set message auto off
)clear all
--S 1 of 18
t: Table(Polynomial Integer, String) := table()
--R
--R
--R (1) table()
--R Type: Table(Polynomial(Integer),String)
--E 1
--S 2 of 18
setelt(t, x**2 - 1, "Easy to factor")
--R
--R
--R (2) "Easy to factor"
--R Type: String
--E 2
--S 3 of 18
t(x**3 + 1) := "Harder to factor"
--R
--R
--R (3) "Harder to factor"
--R Type: String
--E 3
--S 4 of 18
t(x) := "The easiest to factor"
--R
--R
--R (4) "The easiest to factor"
--R Type: String
--E 4
--S 5 of 18
elt(t, x)
--R
--R
--R (5) "The easiest to factor"
--R Type: String
--E 5
--S 6 of 18
t.x
--R
--R
--R (6) "The easiest to factor"
--R Type: String
--E 6
--S 7 of 18
t x
--R
--R
--R (7) "The easiest to factor"
--R Type: String
--E 7
--S 8 of 18
t.(x**2 - 1)
--R
--R
--R (8) "Easy to factor"
--R Type: String
--E 8
--S 9 of 18
t (x**3 + 1)
--R
--R
--R (9) "Harder to factor"
--R Type: String
--E 9
--S 10 of 18
keys t
--R
--R
--R 3 2
--R (10) [x,x + 1,x - 1]
--R Type: List(Polynomial(Integer))
--E 10
--S 11 of 18
search(x, t)
--R
--R
--R (11) "The easiest to factor"
--R Type: Union(String,...)
--E 11
--S 12 of 18
search(x**2, t)
--R
--R
--R (12) "failed"
--R Type: Union("failed",...)
--E 12
--S 13 of 18
search(x**2, t) case "failed"
--R
--R
--R (13) true
--R Type: Boolean
--E 13
--S 14 of 18
remove!(x**2-1, t)
--R
--R
--R (14) "Easy to factor"
--R Type: Union(String,...)
--E 14
--S 15 of 18
remove!(x-1, t)
--R
--R
--R (15) "failed"
--R Type: Union("failed",...)
--E 15
--S 16 of 18
#t
--R
--R
--R (16) 2
--R Type: PositiveInteger
--E 16
--S 17 of 18
members t
--R
--R
--R (17) ["The easiest to factor","Harder to factor"]
--R Type: List(String)
--E 17
--S 18 of 18
count(s: String +-> prefix?("Hard", s), t)
--R
--R
--R (18) 1
--R Type: PositiveInteger
--E 18
)spool
)lisp (bye)
|