Mathwords logoMathwords

Conjugate Matrix — Definition, Formula & Examples

The conjugate matrix is the matrix obtained by taking the complex conjugate of every entry in a given matrix. If a matrix has only real entries, its conjugate matrix is identical to the original.

Given a matrix A=[aij]Cm×nA = [a_{ij}] \in \mathbb{C}^{m \times n}, the conjugate matrix Aˉ\bar{A} is defined as Aˉ=[aˉij]\bar{A} = [\bar{a}_{ij}], where aˉij\bar{a}_{ij} denotes the complex conjugate of the entry aija_{ij}.

Key Formula

Aˉ=[aˉij]\bar{A} = [\bar{a}_{ij}]
Where:
  • AA = An m × n matrix with complex entries
  • aˉij\bar{a}_{ij} = Complex conjugate of the entry in row i, column j

How It Works

To find the conjugate of a matrix, replace each entry a+bia + bi with abia - bi, where aa and bb are real numbers and i=1i = \sqrt{-1}. Real entries stay unchanged since the conjugate of a real number is itself. The conjugate matrix is a building block for the conjugate transpose (also called the Hermitian adjoint), which is computed by taking the conjugate and then transposing.

Worked Example

Problem: Find the conjugate matrix of A = [[2 + 3i, 1 - i], [4, -5i]].
Step 1: Take the complex conjugate of each entry. Replace every i with -i.
Aˉ=[2+3i1i45i]\bar{A} = \begin{bmatrix} \overline{2+3i} & \overline{1-i} \\ \overline{4} & \overline{-5i} \end{bmatrix}
Step 2: Compute each conjugate: 2+3i becomes 2−3i, 1−i becomes 1+i, 4 stays 4, and −5i becomes 5i.
Aˉ=[23i1+i45i]\bar{A} = \begin{bmatrix} 2-3i & 1+i \\ 4 & 5i \end{bmatrix}
Answer: Aˉ=[23i1+i45i]\bar{A} = \begin{bmatrix} 2-3i & 1+i \\ 4 & 5i \end{bmatrix}

Why It Matters

The conjugate matrix appears frequently in quantum mechanics and signal processing, where complex-valued matrices are standard. It is essential for constructing the conjugate transpose A=AˉTA^* = \bar{A}^T, which defines Hermitian and unitary matrices — key objects in advanced linear algebra and physics.

Common Mistakes

Mistake: Confusing the conjugate matrix with the conjugate transpose (Hermitian adjoint).
Correction: The conjugate matrix Aˉ\bar{A} only changes signs on imaginary parts. The conjugate transpose AA^* also transposes the matrix. These are different operations unless A is symmetric.