Ising Problem

Let’s walk through a classic, simple example of the Ising Model from statistical mechanics.

To keep it clean and solvable by hand, we will look at a 1D Ising Model with 3 Spins in a chain with periodic boundary conditions (meaning they form a ring where the last spin connects back to the first).

The Setup

We have 3 spins: s1,s2,s3.

Each spin can point either up (+1) or down (1).

The Hamiltonian (energy equation) for this system with no external magnetic field is:

H=J(s1s2+s2s3+s3s1)

Step 1: Find All Possible States and Their Energies

Since there are 3 spins and each has 2 choices, there are 23=8 possible configurations. Let's calculate the energy H for each.

State (s1​,s2​,s3​) Spin Products (s1​s2​+s2​s3​+s3​s1​) Total Energy (H)
(+1,+1,+1) 1+1+1=3 3J (Ground State)
(1,1,1) 1+1+1=3 3J (Ground State)
(+1,+1,1) 111=1 +J
(+1,1,+1) 11+1=1 +J
(1,+1,+1) 1+11=1 +J
(1,1,+1) 111=1 +J
(1,+1,1) 11+1=1 +J
(+1,1,1) 1+11=1 +J

Notice the symmetry: We have 2 states where all spins align (lowest energy, 3J) and 6 states where one spin is mismatched (higher energy, +J).

Step 2: Calculate the Partition Function (Z)

The partition function encodes all the statistical properties of the system at a given temperature T. It is the sum of the Boltzmann factors eβH over all states, where β=1kBT.

Z=stateseβH

Plugging in our 8 states from the table:

Z=2eβ(3J)+6eβ(J)Z=2e3βJ+6eβJ

Step 3: Find the Average Energy (E)

Now that we have Z, we can easily find thermodynamic properties like the expected (average) energy of the system using the formula:

E=lnZβ=1ZZβ

Let's take the derivative of Z with respect to β:

Zβ=6Je3βJ6JeβJ

Now, plug this back into the average energy formula:

E=6Je3βJ6JeβJ2e3βJ+6eβJ=3Je3βJeβJe3βJ+3eβJ

What does this tell us?