Loading [MathJax]/jax/output/HTML-CSS/jax.js

First time here? Check out the FAQ!

Ask Your Question
0

Geometric multiplicities

asked 2 years ago

bobby.mir gravatar image

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

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
1

answered 2 years ago

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
Preview: (hide)
link

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: 2 years ago

Seen: 241 times

Last updated: Mar 23 '23