![]() | 1 | initial version |
As I explained in the comments, it's unwise to ignore the condition that "each matrix product AiAj is a linear combination of Ai's with integer coefficients". If this condition is employed at earlier stages, a supercomputer may not be needed, and if it's ignored until later stages, a supercomputer may not be able to help.
In particular, this condition means that the lattice spanned by matrices Ai must contain all powers of the given matrix M. It also follows that the number of matrices should be at least the degree of the minimal polynomial of M. In the given example, we have
M = matrix(3,3, [1, 1, 1, -1, 1, 1, -1, -1, 1])
k = M.minpoly().degree()
which gives k=3. So, the powers of M span a subspace V:=⟨M0,M1,M2⟩. Since the span ⟨A1,A2,A3,A4⟩ contains V, we have all Ai∈⟨M0,M1,M2,A1⟩. So, one can try to go over all 01-matrices A1, and then find all 01-matrices in ⟨M0,M1,M2,A1⟩ to restrict the set of candidates for A2,A3,A4.