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!