Let A and B be square matrices of same order. Prove that characteristic polynomials of AB and BA are same. Do AB and BA have same minimal polynomial ?
3 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
Let A and B be square matrices of same order. Prove that characteristic polynomials of AB and BA are same. Do AB and BA have same minimal polynomial ?
1 comentario
John D'Errico
el 30 de Jul. de 2020
This is not a question about MATLAB. Please don't post your homework assignments to Answers.
Respuestas (1)
KSSV
el 30 de Jul. de 2020
Calculate the eigenvalues of the product. They will be euqal.
A = rand(2) ;
B = rand(2) ;
AB = eig(A*B)
BA = eig(B*A)
0 comentarios
Ver también
Categorías
Más información sobre Polynomials en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!