Sunday, July 26, 2026
HomeLanguagesPython | sympy.Matrix.eigenvals() method

Python | sympy.Matrix.eigenvals() method

With the help of sympy.Matrix.eigenvals() method, we can find the eigen values of the matrix.

Syntax : sympy.Matrix().eigenvals() 
Return : Return the eigen values of a matrix. 
 

Example #1 : 

In the given example we can see that the sympy.Matrix.eigenvals() method is used to find the eigen values of a matrix.  

Python3




# Import all the methods from sympy
from sympy import *
 
# use the eigenvals() method for matrix
gfg_val = Matrix([[1, 2], [2, 1]]).eigenvals()
 
print(gfg_val)


Output :

{3: 1, -1: 1} 
 

Example #2 :

Python3




from sympy import *
 
# use the eigenvals() method for matrix
gfg_val = Matrix([[1, 2], [2, 2]]).eigenvals()
 
print(gfg_val)


Output :

{3/2 – sqrt(17)/2: 1, 3/2 + sqrt(17)/2: 1} 
 

 

Dominic
Dominichttp://wardslaus.com
infosec,malicious & dos attacks generator, boot rom exploit philanthropist , wild hacker , game developer,
RELATED ARTICLES

Most Popular

Dominic
32520 POSTS0 COMMENTS
Milvus
131 POSTS0 COMMENTS
Nango Kala
6903 POSTS0 COMMENTS
Nicole Veronica
12017 POSTS0 COMMENTS
Nokonwaba Nkukhwana
12115 POSTS0 COMMENTS
Shaida Kate Naidoo
7023 POSTS0 COMMENTS
Ted Musemwa
7265 POSTS0 COMMENTS
Thapelo Manthata
6980 POSTS0 COMMENTS
Umr Jansen
6972 POSTS0 COMMENTS