Ask Your Question

Revision history [back]

click to hide/show revision 1
initial version

From this collection, I want to find (if there is any) three matrices A,B,C satisfying A+B=C

 M = MatrixSpace(ZZ,2,2)
 s=matrix([[1,0],[0,1]])
 for A in M:
    if A^3==s:
    show(A)

From this collection, I want to find (if there is any) three matrices $A,B,C$ satisfying $A+B=C$. But I am not getting that..