Section 7.2 Diagonalization
you can do it in such way.
xxxxxxxxxx
A = matrix(2,2,[2, -12, 1, -5])
A.eigenmatrix_right()
Let check if the columns of are eigenvectors.
xxxxxxxxxx
D,P = A.eigenmatrix_right()
a1, a2 = P.column(0), P.column(1)
A*a1, A*a2
xxxxxxxxxx
xxxxxxxxxx