/usr/lib/open-axiom/input/exseries.input is in open-axiom-test 1.5.0~svn3056+ds-1.
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 | -- Input for page ExSeriesSubstitution
)clear all
f := taylor(exp(x))
eval(f,1.0)
-- Input for page ExSeriesConvert
)clear all
series(sin(a*x),x = 0)
series(sin(a*x),a = %pi/4)
-- Input for page ExSeriesFunctions
)clear all
f := series(1/(1-x),x = 0)
g := log(f)
exp(g)
-- Input for page ExSeriesManipulate
)clear all
f := series(1/(1-x),x = 0)
f ** 2
|