Linear Algebra · Visual Note
The adjoint lets you "move a matrix to the other side" of an inner product, without changing the result.
The inner product ⟨x, y⟩ measures "how much x and y point in the same direction." It returns a single real number (for Hermitian matrices).
When you write ⟨x, Ay⟩, you first transform y with A, then measure against x.
Think: "after A stretches y, how much does it align with x?"
The adjoint A* is the unique operator such that you get the same number by transforming x instead of y.
⟨x, Ay⟩ = ⟨A*x, y⟩ — always, for all x and y.
In coordinates: A* is obtained by transposing A and conjugating its entries. For real matrices, A* = AT.
(A*)ᵢⱼ = conj(Aⱼᵢ)
When A* = A, the matrix is Hermitian: it treats both "slots" of the inner product identically. This forces eigenvalues to be real.