Introduction: Flipping Matrices
The transpose and adjoint (Hermitian conjugate) are operations that "flip" a matrix. For real matrices, they're the same. For complex matrices, the adjoint also complex-conjugates each entry. These operations are fundamental to defining special matrix classes in quantum mechanics.
The Transpose
The transpose \(A^T\) swaps rows and columns:
\[(A^T)_{ij} = A_{ji}\]Example:
\[\begin{pmatrix} 1 & 2 \\ 3 & 4 \\ 5 & 6 \end{pmatrix}^T = \begin{pmatrix} 1 & 3 & 5 \\ 2 & 4 & 6 \end{pmatrix}\]The Adjoint (Hermitian Conjugate)
The adjoint \(A^\dagger\) (also written \(A^*\) or \(A^H\)) transposes and complex-conjugates:
\[(A^\dagger)_{ij} = \overline{A_{ji}}\]Example:
\[\begin{pmatrix} 1 & 2+i \\ 3i & 4 \end{pmatrix}^\dagger = \begin{pmatrix} 1 & -3i \\ 2-i & 4 \end{pmatrix}\]Key Properties
- \((A^T)^T = A\) and \((A^\dagger)^\dagger = A\)
- \((AB)^T = B^T A^T\) and \((AB)^\dagger = B^\dagger A^\dagger\) (order reverses!)
- \((cA)^\dagger = \bar{c} A^\dagger\)
- \(\langle A\vec{u}, \vec{v} \rangle = \langle \vec{u}, A^\dagger \vec{v} \rangle\) (definition via inner product)
Worked Examples
Example 1: Real Symmetric Matrix
If \(A = A^T\), the matrix is symmetric:
\[\begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix}^T = \begin{pmatrix} 1 & 2 \\ 2 & 3 \end{pmatrix} \checkmark\]Example 2: Computing the Adjoint
\[A = \begin{pmatrix} 1+i & 2 \\ 0 & 3-2i \end{pmatrix}\] \[A^\dagger = \begin{pmatrix} 1-i & 0 \\ 2 & 3+2i \end{pmatrix}\]Example 3: Self-Adjoint (Hermitian)
If \(A = A^\dagger\), the matrix is Hermitian:
\[\begin{pmatrix} 2 & 1-i \\ 1+i & 3 \end{pmatrix}^\dagger = \begin{pmatrix} 2 & 1-i \\ 1+i & 3 \end{pmatrix} \checkmark\]The Quantum Connection
The adjoint maps "kets to bras": \((|\psi\rangle)^\dagger = \langle\psi|\). This is how we compute inner products: \(\langle\phi|\psi\rangle = (|\phi\rangle)^\dagger |\psi\rangle\). Operators representing physical observables must equal their adjoints (Hermitian), which guarantees real measurement values.