|q⟩ Bad Qubits

intermediate · Physics · Identical Particles & Exchange Symmetry

Slater Determinants

For two fermions we wrote an antisymmetric combination by hand. For three, four, or NN fermions, antisymmetrizing every ordering by hand becomes unwieldy. The Slater determinant packages the whole construction into a single elegant formula.

The determinant idea

Suppose NN fermions occupy NN distinct single-particle orbitals ϕ1,ϕ2,,ϕN\phi_1, \phi_2, \ldots, \phi_N. Arrange a matrix whose rows are labelled by particles and whose columns are labelled by orbitals, with entry ϕj(xi)\phi_j(x_i) in row ii, column jj. The antisymmetric NN-fermion state is the determinant of this matrix, normalized by 1/N!1/\sqrt{N!}:

Ψ(x1,,xN)=1N!ϕ1(x1)ϕ2(x1)ϕN(x1)ϕ1(x2)ϕ2(x2)ϕN(x2)ϕ1(xN)ϕ2(xN)ϕN(xN).\Psi(x_1, \ldots, x_N) = \frac{1}{\sqrt{N!}} \begin{vmatrix} \phi_1(x_1) & \phi_2(x_1) & \cdots & \phi_N(x_1) \\ \phi_1(x_2) & \phi_2(x_2) & \cdots & \phi_N(x_2) \\ \vdots & \vdots & \ddots & \vdots \\ \phi_1(x_N) & \phi_2(x_N) & \cdots & \phi_N(x_N) \end{vmatrix}.

Why a determinant does exactly the right job

A determinant has two properties that match fermionic statistics perfectly:

  1. Swapping two rows flips its sign. Exchanging particles ii and jj swaps two rows, so ΨΨ\Psi \to -\Psi. The state is automatically antisymmetric.
  2. A determinant with two equal columns is zero. If two fermions occupied the same orbital, ϕi=ϕj\phi_i = \phi_j, two columns would be identical and the determinant would vanish. This is the Pauli exclusion principle, built in for free.

So the Slater determinant enforces both antisymmetry and exclusion without any extra bookkeeping.

The two-particle case

For N=2N = 2 the determinant has just two terms:

Ψ(x1,x2)=12ϕa(x1)ϕb(x1)ϕa(x2)ϕb(x2)=12[ϕa(x1)ϕb(x2)ϕb(x1)ϕa(x2)].\Psi(x_1, x_2) = \frac{1}{\sqrt{2}} \begin{vmatrix} \phi_a(x_1) & \phi_b(x_1) \\ \phi_a(x_2) & \phi_b(x_2) \end{vmatrix} = \frac{1}{\sqrt{2}}\big[\phi_a(x_1)\phi_b(x_2) - \phi_b(x_1)\phi_a(x_2)\big].

This is exactly the antisymmetric combination from the previous lessons, now read off a 2×22\times 2 determinant. The exercise has you evaluate one such determinant numerically.

Limits of a single determinant

A single Slater determinant captures the statistics of identical fermions exactly, but it does not capture all of their correlation. Real electrons repel each other, and the true ground state is generally a superposition of many determinants. Nonetheless, the single-determinant picture is the indispensable starting point: it guarantees the wavefunction is properly antisymmetric before any correlation corrections are added.

Try it

Evaluate the two-particle Slater determinant 12(ϕa(x1)ϕb(x2)ϕb(x1)ϕa(x2))\tfrac{1}{\sqrt{2}}\big(\phi_a(x_1)\phi_b(x_2) - \phi_b(x_1)\phi_a(x_2)\big) for the orbital values given in the starter code, and return its numeric value.

Run your code to see the quantum state.

Sign in on the full site to ask questions and join the discussion.