Matrices

Table of Contents

\( \newcommand{\tr}{\text{tr}} \)

1. Trace of a Matrix

1.1. Properties

  1. \[ \tr(AB) = \tr(BA) \neq \tr (A) \tr(B) \]
  2. \[ \tr(A A^{T}) = \left( \sum_{i=1}^n a_{ii}^2 \right) \geq 0 \]
  3. \[ \tr(A\pm B) = \tr (A) \pm \tr (B) \]
  4. \[ \tr(ABC) = \tr(BCA) = \tr(CAB) \]
    Special case: If \( A,B,C \) are symmetric matrices, then
    \[ \tr(ABC) = \tr(CBA) \]
  5. Trace of product of symmetric matrix (A) and skew-symmetric matrix (B) is zero.
    \[ \tr(AB) = 0 \]

2. Eigenvalues and Eigenvectors

For a vector \( A \):
\[ AX = \lambda X \]
\( X \) is known as the eigenvector and the scalar \( \lambda \) is known as the eigen value.
To solve this equation, we can write it as
\[ (A-\lambda I) X = 0 \]
Since, \( X \) is non-singular,
\[ \implies \det (A- \lambda I) = 0 \]

2.1. Properties

  1. Sum of eigenvalues = Trace of matrix
    \[ \det (A-\lambda I) = 0 \]
    \[ \sum_i \lambda_i = \tr(A) \]
  2. Product of eigenvalues = Determinant of matrix
    \[ \prod_i \lambda_i = \det(A) \]
  3. For a specific eigenvalue, there are infinite eigenvectors, each are scalar multiples of each other.

Author: Prashant Tiwari

Created: 2024-02-04 Sun 22:52