/usr/lib/open-axiom/input/zlindep.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 | -- Input generated from IntegerLinearDependenceXmpPage
)clear all
M := SQMATRIX(2,INT)
m1: M := squareMatrix matrix [[1, 2], [0, -1]]
m2: M := squareMatrix matrix [[2, 3], [1, -2]]
m3: M := squareMatrix matrix [[3, 4], [2, -3]]
linearlyDependentOverZ? vector [m1, m2, m3]
c := linearDependenceOverZ vector [m1, m2, m3]
c.1 * m1 + c.2 * m2 + c.3 * m3
solveLinearlyOverQ(vector [m1, m3], m2)
|