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..
| 1 | initial version |
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..
Copyright Sage, 2010. Some rights reserved under creative commons license. Content on this site is licensed under a Creative Commons Attribution Share Alike 3.0 license.