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 次查看(过去 30 天)
显示 更早的评论
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 个评论
John D'Errico
2020-7-30
This is not a question about MATLAB. Please don't post your homework assignments to Answers.
回答(1 个)
KSSV
2020-7-30
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 个评论
另请参阅
类别
在 Help Center 和 File Exchange 中查找有关 Polynomials 的更多信息
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!