Introduction
Exact diagonalization (ED) is a numerical technique used to solve quantum many-body problems by directly diagonalizing the Hamiltonian matrix of a system. This method provides exact eigenstates and eigenvalues, making it a powerful tool for studying small to moderately sized quantum systems. A classic example of its application is the Heisenberg model, which describes interacting spins on a lattice and is widely used to understand magnetic phenomena in condensed matter physics.
The Heisenberg Model as a Case Study
The Heisenberg model is defined by the Hamiltonian:
where is the spin-1/2 operator at site , is the exchange interaction (ferromagnetic for and antiferromagnetic for ), and the sum runs over nearest-neighbor pairs . For simplicity, we consider a 1D chain with periodic boundary conditions.
Example: 4-Site 1D Heisenberg Chain
Let’s study a 4-site 1D Heisenberg chain with periodic boundary conditions. The Hamiltonian for this system is:
The spin-1/2 operators can be expressed in terms of Pauli matrices as . The dot product can be written as:
Basis States
For a 4-site system with spin-1/2 particles, the Hilbert space has basis states. These states are product states of individual spin configurations, denoted as , where or . For example, one basis state is .
The basis states are eigen states of operators. When it is applied to the ‘th site, it gives
and
To see the result of applying Hamiltonian to the basis states, we need to express the off-diagonal operators, i.e., and in terms of raising and lowering operators:
which act on the basis states in the following way:
where and . With the above transformation, the Hamiltonian element becomes
Hamiltonian Matrix
To construct the Hamiltonian matrix, we evaluate the action of on each basis state. For instance, consider the term :
This term flips spins at sites 1 and 2 if they are antiparallel and contributes a factor of if they are parallel. For example:
Repeating this process for all terms in and all basis states, we construct the Hamiltonian matrix. For brevity, we do not write the full matrix here, but it can be systematically built using the above rules.
Diagonalization
Once the Hamiltonian matrix is constructed, it is diagonalized numerically to obtain the eigenstates and eigenvalues. These results provide insights into the ground state energy, low-lying excitations, and magnetic properties of the system. For example, for the antiferromagnetic Heisenberg chain (), ED reveals a singlet ground state with no long-range order, consistent with the Bethe ansatz solution for larger systems.
Scaling with Lattice Size
For the 1D Heisenberg model, the size of the Hamiltonian matrix grows exponentially with the number of lattice sites, making ED computationally challenging for large systems. Understanding how the matrix size scales with lattice size is crucial for assessing the feasibility of numerical methods like sparse and full diagonalization.
For a system with sites, each site can be in one of two states: spin-up () or spin-down (). The Hilbert space dimension, which determines the size of the Hamiltonian matrix, is given by:
For example:
- For , the Hilbert space has states.
- For , the Hilbert space has states.
- For , the Hilbert space has states.
This exponential growth means that the Hamiltonian matrix size quickly becomes unmanageable as increases. For instance, a 20-site system requires diagonalizing a matrix, which is computationally intensive.
Sparse vs. Full Diagonalization
The Hamiltonian matrix of the 1D Heisenberg model is typically sparse, meaning most of its elements are zero. This sparsity arises because the Hamiltonian only connects states that differ by a single spin flip (nearest-neighbor interactions). For example, in a 4-site system, the Hamiltonian matrix might look like this (simplified):
where are diagonal elements (energies of basis states), and represents off-diagonal elements due to spin-flip terms.
Full Diagonalization
Full diagonalization involves computing all eigenvalues and eigenvectors of the Hamiltonian matrix. While this provides complete information about the system, it is computationally expensive for large matrices due to the scaling, where is the matrix size. For example, full diagonalization of a matrix is impractical on most computers.
Sparse Diagonalization
Sparse diagonalization exploits the sparsity of the Hamiltonian matrix to compute only a subset of eigenvalues and eigenvectors, typically the lowest few eigenstates (e.g., the ground state and low-lying excitations). Algorithms like the Lanczos method or Arnoldi iteration are commonly used for sparse diagonalization. These methods scale much better with system size, often requiring only memory and time for a few eigenstates, making them suitable for larger systems.
Comparisons
The size of the Hamiltonian matrix in the 1D Heisenberg model grows exponentially with the number of lattice sites, posing a significant computational challenge. While full diagonalization provides complete information about the system, it is limited to small lattices due to its high computational cost. Sparse diagonalization, on the other hand, leverages the sparsity of the Hamiltonian to study larger systems by focusing on the most relevant eigenstates. This trade-off between full and sparse diagonalization highlights the importance of choosing the right numerical approach based on the system size and the desired physical insights.