import numpy as np
A = np.array([ [.8, .6, .8], [.2, .3, 0], [0, .1, .2] ])
Now find a starting x:
x
x = np.random.randn(3)
Next, compute $A^{100}x$:
x = A.dot(x) x
array([ 0.84960372, 0.24274392, 0.03034299])
What does this mean?