LINEAR-ALGEBRA Β· Interactive Practice | Unit 25 Β· Video 1

When Transpose Isn't Enough: The Conjugate Transpose

IKey Formulas

Concept Real Case Complex Case
Length squared xTxx^T x zHz=βˆ₯z1βˆ₯2+βˆ₯z2βˆ₯2+β‹―+βˆ₯znβˆ₯2z^H z = \|z_1\|^2 + \|z_2\|^2 + \cdots + \|z_n\|^2
Inner product yTxy^T x ⟨x,y⟩=yHx\langle x, y \rangle = y^H x
Symmetric / Hermitian AT=AA^T = A AH=AA^H = A
Orthogonal / Unitary QTQ=IQ^T Q = I QHQ=IQ^H Q = I, so Qβˆ’1=QHQ^{-1} = Q^H

The conjugate transpose AHA^H is: transpose, then conjugate every entry. The rule is simple β€” whenever you transpose, also conjugate.

IIVisualization 1 β€” Why Transpose Alone Fails

For a complex vector, plain zTzz^T z can be zero or negative β€” only zHzz^H z gives a real, non-negative length.

IIIVisualization 2 β€” Building a Hermitian Matrix

AA is Hermitian when AH=AA^H = A: that forces a real diagonal and conjugate-paired off-diagonals.

IVVisualization 3 β€” Verifying a Unitary Matrix

QQ is unitary when QHQ=IQ^H Q = I β€” its columns orthonormal under the complex inner product.

VQuiz Questions

Question 1

Let z=[21+i]z = \begin{bmatrix} 2 \\ 1 + i \end{bmatrix}. What is zHzz^H z (the length squared)?

βœ… Correct! Each ∣zi∣2|z_i|^2 is real and non-negative, and ∣2∣2+∣1+i∣2=4+2=6|2|^2 + |1+i|^2 = 4 + 2 = 6.

❌ Not quite. That's what you'd get from zTzz^T z without conjugating β€” exactly the kind of nonsense answer that motivates using HH.

❌ Not quite. Zero would mean zz is the zero vector, but zβ‰ 0z \ne 0. With the conjugate, the length squared is positive.

❌ Not quite. Compute ∣z1∣2+∣z2∣2|z_1|^2 + |z_2|^2 where ∣a+bi∣2=a2+b2|a+bi|^2 = a^2 + b^2.

Show solution

Solution:

The conjugate transpose of zz is zH=[21βˆ’i]z^H = \begin{bmatrix} 2 & 1 - i \end{bmatrix} (transpose, then conjugate each entry).

zHz=2β‹…2+(1βˆ’i)(1+i)=4+(1βˆ’i2)=4+(1+1)=6z^H z = 2 \cdot 2 + (1 - i)(1 + i) = 4 + (1 - i^2) = 4 + (1 + 1) = 6

Equivalently, zHz=∣2∣2+∣1+i∣2=4+2=6z^H z = |2|^2 + |1 + i|^2 = 4 + 2 = 6. The result is real and positive, as guaranteed.

Question 2

If zz is the column vector [12i]\begin{bmatrix} 1 \\ 2i \end{bmatrix}, what is zHz^H?

βœ… Correct! Transpose flips column to row, then conjugation flips 2i2i to βˆ’2i-2i.

❌ Not quite. You transposed but forgot to conjugate. HH requires both steps.

❌ Not quite. You conjugated but forgot to transpose. HH swaps shape and conjugates.

❌ Not quite. HH never negates the real part β€” only flips the sign of imaginary parts.

Show solution

Solution:

Apply HH in two steps:

  1. Transpose: the column [12i]\begin{bmatrix} 1 \\ 2i \end{bmatrix} becomes the row [12i]\begin{bmatrix} 1 & 2i \end{bmatrix}.
  2. Conjugate every entry: 11 stays 11, and 2i2i becomes βˆ’2i-2i.

So zH=[1βˆ’2i]z^H = \begin{bmatrix} 1 & -2i \end{bmatrix}, a row vector.

Question 3

Consider the matrix A=[42+3i2βˆ’3i7].A = \begin{bmatrix} 4 & 2 + 3i \\ 2 - 3i & 7 \end{bmatrix}.

Is AA Hermitian?

βœ… Correct! The diagonal is real and the off-diagonal entries 2+3i2+3i and 2βˆ’3i2-3i form a conjugate pair, so AH=AA^H = A.

❌ Not quite. Check both conditions: diagonal entries 4,74, 7 are real, and off-diagonal 2+3i2+3i and 2βˆ’3i2-3i are conjugates β€” Hermitian is satisfied.

❌ Not quite. Try again β€” the hints above can help.

Show solution

Solution:

Check the structural conditions for AH=AA^H = A:

  • Diagonal entries real? 44 and 77 β€” yes, both real.
  • Off-diagonal conjugate pair? A12=2+3iA_{12} = 2 + 3i and A21=2βˆ’3iA_{21} = 2 - 3i. We need A21=A12β€Ύ=2+3iβ€Ύ=2βˆ’3iA_{21} = \overline{A_{12}} = \overline{2 + 3i} = 2 - 3i. Yes β€” they are conjugates.

Both conditions hold, so AH=AA^H = A and AA is Hermitian.

Question 4

A matrix QQ is unitary, meaning QHQ=IQ^H Q = I. Which statement about Qβˆ’1Q^{-1} is correct?

βœ… Correct! From QHQ=IQ^H Q = I we read off Qβˆ’1=QHQ^{-1} = Q^H. Inverting a unitary matrix is as cheap as conjugate-transposing it.

❌ Not quite. That's the rule for real orthogonal matrices. For complex unitary matrices, conjugation is essential β€” QTQβ‰ IQ^T Q \ne I in general.

❌ Not quite. Only special matrices (involutions) satisfy Q2=IQ^2 = I. The general unitary rule is Qβˆ’1=QHQ^{-1} = Q^H.

❌ Not quite. Unitary matrices are always invertible β€” the formula QHQ=IQ^H Q = I tells us Qβˆ’1=QHQ^{-1} = Q^H.

Show solution

Solution:

By definition, QHQ=IQ^H Q = I. Multiplying both sides by Qβˆ’1Q^{-1} on the right:

QH=Qβˆ’1.Q^H = Q^{-1}.

So the inverse of a unitary matrix is just its conjugate transpose β€” extremely cheap to compute. This is the complex generalization of "the inverse of an orthogonal matrix is its transpose."

Note: QTQ^T alone is not the inverse for complex QQ — conjugation is essential. For instance, with Q=12[1ii1]Q = \frac{1}{\sqrt{2}}\begin{bmatrix} 1 & i \\ i & 1 \end{bmatrix}, you can check that QTQ≠IQ^T Q \ne I but QHQ=IQ^H Q = I.

Solved: 0 / 4