2

Prove that if A is a square matrix then A and A transpose have same Eigen values.

Kindly help me how to prove this by generally not considering matrix by ourselves.

DonAntonio
  • 211,718
  • 17
  • 136
  • 287

2 Answers2

8

The eigen-values solve $det(A-I\lambda)=0$. But $det(A^{T}-I\lambda)=det((A-I\lambda)^{T})=det((A-I\lambda))$ by virtue of the nature of the computation of the determinant. So we may notice that both $det(A-I\lambda)$ and $det(A^T-I\lambda)$ must have the same solutions. And so the same eigen-values.

dan
  • 136
3

$$A\sim A^t\implies \exists\,\text{invertible}\;P\;\;s.t.\;\;P^{-1}AP=A^t\implies$$

$$\det (xI-A^t)=\det(xI-P^{-1}AP)=\det\left[P^{-1}\left(xI-A\right)P\right]=\det(xI-A)\ldots$$

DonAntonio
  • 211,718
  • 17
  • 136
  • 287