/usr/lib/open-axiom/input/mfinfact.input is in open-axiom-test 1.4.1+svn~2626-2ubuntu2.
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 | --Copyright The Numerical Algorithms Group Limited 1994.
)clear all
p:POLY PF 7 :=6*x +6*y +6*z +x^49+y^49+z^49
factor p
p:POLY PF 7:=(x+3*y+z)*(w*x+y)*(x*y+w**3)
factor p
pp:=p**2
gcd(p,differentiate(p,x))
p23:POLY PF 23:=(x+3*y+z)*(w*x+y)*(x*y+w**3)
factor(p23)
q: POLY PF 2 := y**4 + y**3 + x**4 + x**2
factor q
factor(q*(q+1))
q:=x**2*y**2+z
factor(q*(1+q))
|