Matrix Transpose, Determinant & Adjoint Matrix
Advanced Matrix Operations Explained
I. Matrix Transpose ($A^T$)
The transpose of a matrix is obtained by swapping its rows with columns. If matrix $A$ is an $m \times n$ matrix, then its transpose $A^T$ is an $n \times m$ matrix.
Let matrix $A = (a_{ij})_{m \times n}$, then its transpose $A^T = (b_{ij})_{n \times m}$ satisfies:
$$b_{ij} = a_{ji}$$That is, the element at row $i$, column $j$ of the transpose equals the element at row $j$, column $i$ of the original matrix.
Important Properties of Transpose:
- $(A^T)^T = A$ (Double transpose equals the original matrix)
- $(A + B)^T = A^T + B^T$ (Transpose of sum equals sum of transposes)
- $(kA)^T = kA^T$ (Transpose of scalar multiplication equals scalar multiplication of transpose)
- $(AB)^T = B^T A^T$ (Transpose of product equals product of transposes in reverse order)
II. Matrix Determinant ($|A|$ or $\det(A)$)
The determinant is an important numerical characteristic of a square matrix, widely used in linear algebra. Only square matrices ($n \times n$) have determinants.
2x2 Determinant:
$$\begin{vmatrix} a_{11} & a_{12} \\ a_{21} & a_{22} \end{vmatrix} = a_{11}a_{22} - a_{12}a_{21}$$3x3 Determinant (expanding along first row):
$$\begin{vmatrix} a_{11} & a_{12} & a_{13} \\ a_{21} & a_{22} & a_{23} \\ a_{31} & a_{32} & a_{33} \end{vmatrix} = a_{11}\begin{vmatrix} a_{22} & a_{23} \\ a_{32} & a_{33} \end{vmatrix} - a_{12}\begin{vmatrix} a_{21} & a_{23} \\ a_{31} & a_{33} \end{vmatrix} + a_{13}\begin{vmatrix} a_{21} & a_{22} \\ a_{31} & a_{32} \end{vmatrix}$$General n×n Determinant (expanding along first row):
$$\det(A) = \sum_{j=1}^{n} (-1)^{1+j} a_{1j} M_{1j}$$Where $M_{ij}$ is the $(n-1)$-order minor (submatrix obtained by removing row $i$ and column $j$).
Important Properties of Determinant:
- $\det(A^T) = \det(A)$ (Transpose does not change the determinant value)
- $\det(AB) = \det(A) \cdot \det(B)$ (Determinant of product equals product of determinants)
- $\det(kA) = k^n \det(A)$ (Multiplying an n×n matrix by scalar k multiplies determinant by $k^n$)
- If a matrix has two identical or proportional rows (columns), determinant is 0
- Swapping two rows (columns) changes the sign of determinant
- A matrix is invertible if and only if $\det(A) \neq 0$
III. Adjoint Matrix ($A^*$ or $\text{adj}(A)$)
The adjoint matrix is the transpose of the matrix formed by the cofactors of the original matrix. It plays an important role in finding the inverse matrix.
Cofactor:
The cofactor of element $a_{ij}$ is defined as:
$$A_{ij} = (-1)^{i+j} M_{ij}$$Where $M_{ij}$ is the minor (subdeterminant obtained by removing row $i$ and column $j$).
Adjoint Matrix:
The element at row $i$, column $j$ of adjoint matrix $A^*$ is the cofactor $A_{ji}$ of element $a_{ji}$ from the original matrix:
$$A^* = \begin{pmatrix} A_{11} & A_{21} & \cdots & A_{n1} \\ A_{12} & A_{22} & \cdots & A_{n2} \\ \vdots & \vdots & \ddots & \vdots \\ A_{1n} & A_{2n} & \cdots & A_{nn} \end{pmatrix}$$Note: The adjoint matrix is the transpose of the cofactor matrix.
Important Properties of Adjoint Matrix:
- $A \cdot A^* = A^* \cdot A = \det(A) \cdot I$ ($I$ is the identity matrix)
- If $\det(A) \neq 0$, then $A^{-1} = \frac{1}{\det(A)} A^*$ (Inverse matrix formula)
- $\det(A^*) = [\det(A)]^{n-1}$ (for n×n matrix)
- $(A^*)^* = [\det(A)]^{n-2} A$ (for $n \geq 2$)
- $(kA)^* = k^{n-1} A^*$ (for n×n matrix)
Practical Applications:
- Transpose: Widely used in graphics transformations and data processing
- Determinant: Determining matrix invertibility, solving linear systems, calculating volumes and areas
- Adjoint Matrix: Finding inverse matrices, Cramer's rule for solving linear systems