The cube roots of [Maple Math]

We all know that the cube root of 1 is 1. But what is the cube root of the 3 by 3 identity matrix?

Consider the following matrix:

> A := matrix([[-1,-6,-4],[-4,4,1],[7,-9,-3]]);

[Maple Math]

> evalm(A^2),evalm(A^3),evalm(A^4),evalm(A^5),evalm(A^6);

[Maple Math]

We can see that A cubed is the 3 by 3 identity matrix, so in some sense A is the cube root of the 3 by 3 identity matrix.

Do all 3 by 3 matrices have this property?

> B:=matrix(3,3,rand(-10..10));

[Maple Math]

> evalm(B^2),evalm(B^3),evalm(B^4),evalm(B^5),evalm(B^6);

[Maple Math]

Obviously not!

Is A the unique cube root of the 3 by 3 identity matrix? No, in fact there are an infinite number of them!

Think in terms of linear transformations. A is a linear transformation which takes us back to where we started from after doing the transformation 3 times. There are an infinite number of such transformations. Below is an example of how to find one, starting with a random non-singular 3 by 3 matrix,

>

Finding a cube root of [Maple Math] starting from a random 3 by 3 matrix: