Juan Manuel J
Juan Manuel J

Reputation: 13

How to find the eigenvalues in Python with a matrix different to the identity matrix

I am trying to find the eigenvalues of a characteristic equation in Python, the problem is that in the equation |A-lambda I|=0, the matrix that multiplies lambda isn't the identity matrix, but I have to make clear that this matrix different to the identity matrix is a diagonal matrix.

Upvotes: 0

Views: 334

Answers (1)

Jatentaki
Jatentaki

Reputation: 13113

The problem you're facing is known as the generalized eigenvalue problem. An example solution with numpy is given in this question.

Upvotes: 0

Related Questions