Trace of 2X2 Matrix
[Math | Numerical Analysis | Matrices] This equation computes the trace of a two-by-two matrix. Given a square matrix where
A = [A11A12A21A22],
The Trace of this matrix is defined as tr (A) = A11 + A22
The trace can be used in a number of numerical analyses computing things like the eigenvalues of a matrix.
The trace of a square matrix (the matrix must be a square matrix) is simply the sum of the diagonals: A11+A22+ ... A∩.
Note that the trace of a matrix is equal to that of its transpose, i.e., tr(A) = tr(AT)