Eigenvalues and eigenvectors This function computes the eigenvalues and eigenvectors of a matrix. Syntax eigenvalues_and_vectors(Matrix) eigenvalues_and_vectors(Matrix, Field) Description eigenvalues_and_vectors(Matrix) Given a matrix, this function returns its eigenvalues and eigenvectors over (repeated eigenvalues are not omitted). The output is a list: the odd positions correspond to eigenvalues and the even to eigenvectors. That is: at position 1 there is an eigenvalue and its associated eigenvector is in position 2, and so on. eigenvalues_and_vectors(Matrix, Field) Given a matrix and a field , this functions returns its eigenvalues and eigenvectors over (repeated eigenvalues are not omitted). The output is a list: the odd positions correspond to eigenvalues and the even to eigenvectors. That is: at position 1 there is an eigenvalue and its associated eigenvector is in position 2, and so on. Related functions Eigenvectors, Eigenvalues Table of Contents Syntax Description Related functions