/usr/lib/open-axiom/input/multfact.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 | --Copyright The Numerical Algorithms Group Limited 1996.
a := rootOf(a**2+a+1)
p := y*z**2 + a*z*x**2 + a*a*x*y**2
-- following used to run forever, now returns 1 factor
factor(p,[a])
b:=rootOf(b**2+1)
-- following used to run forever, now returns 2 factors
factor(x**2*y**2+u**2*v**2,[b])
|