Homework Statement
I have the following matrix:
0 0 0 1
1 0 0 0 = A
0 1 0 0
0 0 1 0
and the vector
v = (1,0,0,0)
If I perform Av, this gives:
Av=(0,1,0,0)
And If I keep multiplying the result by A like A*A*(Av), the outcome will be something like
j= (0,0,1,0)
k=(0,0,0,1)
l=(1,0,0,0)
The...