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 个)

KSSV
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)

类别

Help CenterFile Exchange 中查找有关 Polynomials 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by