Skip to content
Eigenvectors and Eigenvalues (Linear Algebra for Quantum Computing)

Eigenvectors and Eigenvalues (Linear Algebra for Quantum Computing)

February 1, 2025

Eigenvectors and eigenvalues are the bridge between linear algebra and quantum measurement. They tell you which states are “stable” (up to a scale factor) under an operator, and what numbers you can observe when you measure.

The core idea (intuition)

Think of a matrix MM as a machine that transforms vectors. In general it can rotate them and change their length.

An eigenvector is special: it does not change direction under MM. It only scales.

The definition

A nonzero vector v\lvert v\rangle is an eigenvector of MM with eigenvalue λ\lambda if:

Mv=λv. M\lvert v\rangle = \lambda \lvert v\rangle.
  • v\lvert v\rangle: eigenvector (direction that is preserved)
  • λ\lambda: eigenvalue (how much it scales; negative values flip the direction, but remain collinear)

A quick example

Let

M=(3001). M= \begin{pmatrix} 3 & 0 \\ 0 & -1 \end{pmatrix}.

Then:

  • (10)\begin{pmatrix}1\\0\end{pmatrix} is an eigenvector with eigenvalue 33
  • (01)\begin{pmatrix}0\\1\end{pmatrix} is an eigenvector with eigenvalue 1-1

Why this matters in quantum computing

In quantum mechanics, measurable quantities (observables) are represented by Hermitian operators (Hermitian matrices in a chosen basis).

The key rule is:

  • the possible measurement outcomes are the eigenvalues of the observable operator
  • a state that gives a definite outcome is an eigenstate (eigenvector)

If an observable is AA with eigenpairs (ai,ai)(a_i, \lvert a_i\rangle), then measuring a system in state ψ\lvert \psi\rangle returns aia_i with probability:

P(ai)=aiψ2. P(a_i)=\left|\langle a_i \vert \psi\rangle\right|^2.

This is why eigenvectors show up everywhere: they define the “questions” you can ask (measurement settings) and the “answers” you can get (outcomes).

Why Hermitian operators?

Hermitian operators are used for observables because their eigenvalues are real, matching physical measurement results.

Unitary matrices describe time evolution (gates). Hermitian matrices describe measurements/energies. They are related: many unitaries are exponentials of Hermitian generators.

Next