Ask Your Question
0

Geometric multiplicities

asked 2023-03-23 16:00:31 +0200

bobby.mir gravatar image

Is there any function to find the geometric multiplicities of an eigenvalue of a matrix?

edit retag flag offensive close merge delete

1 Answer

Sort by ยป oldest newest most voted
1

answered 2023-03-23 17:06:36 +0200

rburing gravatar image

Example:

A = Matrix([[2,0,0,0],[1,2,0,0],[0,1,3,0],[0,0,1,3]])
for (l, E) in A.right_eigenspaces():
    print('Eigenvalue', l, 'has geometric multiplicity', E.dimension())

Output:

Eigenvalue 3 has geometric multiplicity 1
Eigenvalue 2 has geometric multiplicity 1
edit flag offensive delete link more

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Question Tools

1 follower

Stats

Asked: 2023-03-23 16:00:31 +0200

Seen: 137 times

Last updated: Mar 23 '23