Ising model was developed by Wilhelm Lenz and Ernst Ising as a simplified model to describe ferromagnetism in the perspective of statistical mechanics. It is one of the simplest models that experience phase transition. In short, it models magnetism as a process of electrons aligning their magnetic field with their immediate neighbors. This has similarity with flocking model and consensus problem in multi-robot system in that global properties are derived only from local interactions between the agents.
In this project, we will first introduce the mathematical foundation of the Ising model, then analyze the at equilibrium behavior of the 2D lattice Ising model, finally, we will show the simulation of 2D lattice Ising model using the Metropolis-Hasting algorithm.
We are interested in the state of each electron called spin, denoted \(x\). The spin can take on two values: 1) up (\(1\)), and 2) down (\(-1\))
Consider a sea of \(N\) immobile electrons (such as in a block of iron), each electron \(n\) has local interaction \(J_{n,m}\) with every neighboring electron \(m\). Additionally, each electron \(n\) experience an external electric field \(h_n\). This electron sea can be represented as a graph as follow:
The local interaction encodes the energy of misalignment between the pair of electrons, if the electrons are aligned (same spin), the energy is small; if the electrons are misaligned, the energy is high. In the Ising model, this is done by multiplying the spin of the pair
If the electrons are aligned, the energy is \(-J_{n,m}\); if the electrons are misaligned, the energy is \(J_{n,m}\). Likewise, the energy associated with the external field is the alignment of the electron with its local external field:
The state of the entire system can be defined as a vector of the spin of every electron in the electron sea,
The energy of any given system state is the sum of all alignments energies
From statistical mechanics, we know that the probability of a system existing in a particular state \(X_i\) follows the Boltzmann distribution
where \(\beta\) is the inverse temperature of the system, and \(Z\) is the normalizing constant, aka the partition function,
Finally, the macro quantity we are interested about the system is the magnetization \(M\), which is the average spin of the entire electron sea
If all the electrons has a up-spin \(x=1\), the magnetization is \(M=1\). If all the electrons has a down-spin, the magnetization is \(M=-1\). If half of the electrons have a down-spin and other half have a up-spin, the magnetization is \(M=0\).
With the probability of the system being in each state defined, we can simulate the system using the Metropolis-Hasting (M-H) algorithm, which is in the class of algorithm called Markov chain monte carlo. The idea is to randomly perturb the state of the system and decide whether to keep the perturbation based on the probability of the state. By properly selecting this acceptance rate of perturbation, the M-H algorithm can ensure the frequency of the system being in each state during the simulation to be equal to the true probability defined by the Boltzmann distribution.
The M-H algorithm relies on a condition called detailed balance. In short, it is a condition where the in-flux and out-flux between two states are the same for every pair of states
The goal is to design the transition probability \(\mathbb{P}(X_j | X_i)\) such that the detailed balance condition hold for every pair of states for \(\mathbb{P}(X_i) = \frac{1}{Z}e^{-\beta E(X_i)}\).
The M-H algorithm is separates the transition probability into two steps: 1) propose \(g(X_j|X_i)\) 2) accept \(A(X_j|X_i)\). The total probability of transition is the product of the two.
The detailed balance can be rewritten as
The particular propose transition we use here is the single-spin-flip model, where we uniformly randomly select one of the electron, and flip its spin, then the proposed transition probability is just the chance of selecting a particular electron
This simplifies the acceptance ratio to
Since this is a single flip, the change of energy can be evaluated only around the neighborhood of the selected electron.
There are still two variables, \(A(X_j|X_i), A(X_i|X_j)\) with one equation. The standard method is to set \(A(X_i|X_j)\) to \(1\) if \(\Delta E\) is positive; and \(A(X_j|X_i)\) to \(1\) if \(\Delta E\) is negative. In other word, always transition if it leads to a decrease in energy, and sample from \(e^{-\beta \Delta E}\) if the transition leads to an increase of energy. Mathematically,
With this we have the full algorithm for simulating the Ising model
We will simulate the system by using \(J=1\) on a \(100\times 100\) grid. The neighborhood of each electron is a \(5\times 5\) square centered at the electron. Additionally, we slowly increase \(\beta\) to observe the magnetization of the system.
We can see a sudden change of magnetization from \(0\) to \(1\) at around \(\beta = 0.04\), this is called a phase change, where a system shows a sudden change of behavior after some critical point. Most common example being boiling and freezing of water. In this case, the magnetization of metal as it is been cooled down. Next section, we will derive the critical temperature for the magnetization of the Ising model using statistical mechanics.
In this section, we want to study the magnetization at equilibrium for any given inverse temperature \(\beta\) for a electron sea in a 2D square lattice. In other word, all electrons have 4 neighbors: up, down, left, right. And the distance to all the neighbors are equal.
Turns out, it is useful to first study the Ising model with no interaction (\(J_{m,n} = 0\)) between the electrons, which can be used for simplifying the full Ising model.
Assume a uniform external field \(h_n = h\) for every electron site. The energy of the no interaction model is
We will rewrite this in terms of the total numbers of up-spin \(k\), correspondingly, the total number of down-spin is \((N-k)\)
The partition function is
where \(\textrm{C}^N_k\) is the choose function since there are \(N\) choose \(k\) amount of states that has the same \(k\) number of up-spin.
Substitute \(a = e^{-\beta h}\) and \(b = e^{\beta h}\)
this is the binomial expansion
Substitute \(a\) and \(b\) back, we get
The average energy of the system can be derived from the partition function
The magnetization is related to the energy by
Therefore
when \(\beta\) is \(0\) (infinite temperature), the magnetization is \(0\); the magnetization approaches \(-1\) as \(\beta\) goes up
Now, we introduce the local interaction \(J_{m,n}\) back and remove the external field \(h\) instead. Assume all the interactions have the same strength \(J_{m,n} = J\). The energy equation is then
Focus on the local energy associated with the spin of a single electron with its neighborhood \(\mathcal{N}\)
the average of the neighborhood's state is approximately equal to the magnetization at equilibrium, \(M\), this is called the mean field approximation
where \(|\mathcal{N}\) is the number of neighbors. The bigger the neighborhood size is, the more accurate the approximation gets. Since \(M\) and \( |\mathcal{N}|\) are constants, we can treat them as the external field for \(x_n\)
From the no-interaction model, we know the expected spin, which is the magnetization, from only an external field is
By symmetry, any electron is the same as electron \(n\), then we can conclude that the expected magnetization of electron \(n\) is just the global magnetization.
To find the solution of \(M\), we can plot the left hand side and right hand side and find the intersection
With \(\beta J |\mathcal{N}| = 0.5\), the only solution for \(M\) is \(0\). Observe what happen when we start increasing \(\beta\)
When \(\beta\) start increasing, the \(\tanh\) function gets steeper and steeper. At some point, it gets so steep that it crosses the \(y=M\) line, and three solutions exist. One close to \(-1\), one close to \(1\) and one that is \(0\). That is, the system can be all electrons having a down-spin; all electrons having a up-spin; or exactly 50/50 up and down. The 50/50 solution is unstable because if one electron flip the spin due to random noise, the system will tip toward the spin direction that is the majority.
This cross-over point happens when \(\tanh\) is tangent to \(y=M\) at \(0\)
Set the slope at \(M=0\) to be equal to the slope of \(y=M\), which is \(1\) to get the critical temperature \(\beta_\text{c}\)