The Renormalization Group
Contents
The Renormalization Group#
Note: On this page we are going to interchangably use
References#
Ken Wilson’s 1979 Scientific American article on renormalization, “Problems in Physics with Many Scales of Length”. (Possible direct pdf link)
Minimal background#
The Ising model was immortalized in physics history not by Ising, but by researchers who followed. In his original work (his PhD thesis, 1924), Ising considered only one-dimensional magnets and famously found that his namesake model did not describe a phase transition between paramagnetism and ferromagnetism, despite belief that it should. Interest in the model waned until 1936, when Rudolf Peierls argued that two-dimensional variants of the model do exhibit ferromagnetic phase transitions. In 1944, nearly a decade after Peierls’ argument, Lars Onsager published an exact solution of the two-dimensional model — so crafty that its details still vex most physicists — validating Peierls’ conclusions. Turns out the Ising model is a good model of ferromagnetism, but dimensionality matters.
Evidently reliance on exact solutions is a poor method for identifying the interesting phases of models; we’d like to unpack more physics than two dimensions worth from a promising model over 20 years. It’s for this reason that Ken Wilson’s formulation of the renormalization group — following pioneering work by Gell-Mann and Low, Kadanoff, and undoubtedly many others — is held in such high regard.
The renormalization group (RG) is a theory of theories. Roughly speaking, it’s a general method to determine how the physics of a particular model, expressed by a Hamiltonian
Abstractly, we can imagine models as living in some infinite-dimensional space where the axes represent every conceivable interaction of the model’s microscropic constituents. For magnetism models, one axis might be interaction with an external magnetic field,
Outcomes of measurements depend immensely on the scales at which they’re taken, even when studying a single system. (Consider the results you might get measuring: the pressure of a balloon using its entire surface versus a square-angstrom patch; particles produced by 1eV proton collisions versus 10 TeV proton collisions.) Naively modeling, we would write down very different looking Hamiltonians to describe the physics at each scale. If it’s truly possible to attribute one Hamiltonian to the microscopic stuff in a system, there must be some way to determine how that Hamiltonian evolves as the system is probed at different scales.
RG provides such a methodology by establishing differential equations for a model’s coupling constants. Viewing coupling constants as functions of some observation scale (be it energy or length), it determines the significance of interactions as a system is examined at increasing/decreasing scale, showing how the constants grow or shrink.
On this page we’ll walk through a discrete, numerical application of RG to the Ising model. Iteratively transforming the model to larger and larger lattice sizes (lower and lower energies), we’ll find that it describes multiple phases of matter at low energy.
Implement the renormalization group with an Ising model simulator#
We would now like to use our Ising model simulation to understand something about the renormalization group. RG tells us to approach the model in the following way:
Take your initial simulation
Coarse grain it in some way (i.e. perform a scale transformation)
Interpret the new simulation as looking just like the old simulation, but with different parameters.
In our implementation the parameter we will tune is the nearest-neighbor coupling constant
Coarse graining#
The first step of renormalization is coarse-graining. To do this, we will take blocks of
Grading
Generate snapshots of spin configurations for
an
spin configurationa single coarse-grained
spin configuration anda double coarse-grained
configuration.
Can you see where the transition is?
Now we want to do something more quantative. We will take an Ising model on an
To accomplish this we must find some quantitative feature of the model that can be compared to itself after coarse graining. Concretely, we will match the
Run your simulator on an
model with a coupling constant .While this simulator is running, compute the coarse-grained
modelMeasure
of the coarse grained model.Make a graph of this for every
Run your simulator on an
model.Measure
of the coarse grained model.Make a graph for this for every
Now plot your two curves on top of each other.
Where the curves intersect are fixed points.
From these two curves you should be able to generate a graph of
vs.
Testing
The coarse grained calculation is very easy to mess up.
Look at your coarse-grained snapshots and convince yourself that they look right.
Figure out how to compute the
result for the coarse-grained lattice for analytically or using five lines of python. Check that this matches what you got in your Monte Carlo. This is an important test and will catch lots of mistakes.
Grading
Plot for your native
Getting #
You should have a coarse-grained and native
Graph the native curve as
vs. . You want to interpolate this usingscipy.interpolate.interp1d
where the interpolation takes and gives back . This is backwards from how you’ve graphed it naivelyGo through the coarse grained curve and find the closest
on the native curve for each value of on the coarse-grained curve.
Grading
Put the plot for
Extension
You’ve now succesfully implemented the RG approach for the 2D Ising model. Congratulations! It is an interesting exercise to try the same approach for the 1D Ising model (where you should find no phase transition) and the 3D Ising model (where you should also be able to compute the critical exponent
Extension
In this work, you have performed the RG flow by running simulations at two different system sizes and the matching them. This is conceptually the simplest thing to do. In practice, as the number of coupling constants gets large, though, this would become unwieldy. There is a way to determine the flow with simulations at a single temperature using the Monte Carlo Renormalization Group
Extension
So far we’ve seen how to do the renormalization group using Monte Carlo. There is an alternative performing RG using tensor networks called TNRG that can be used to compute the critical exponent of things like Ising models.
Critical Exponents and Stability of Fixed Points#
The whole point of the renormalization group is that you should be able to apply the renormalization procedure over and over again and flow to a fixed point which corresponds to a phase. We’ve already seen this in pictures when you coarse grained twice. Now, we are going to see if we can use your pylab.pyplot.arrow(0.35, R(0.35), R(0.35)-0.35,0)
. The arrow is now pointing at the new spot on the x-axis you would start. And after you apply the RG step you’ll actually be at
Do this over again starting at
What you’ve done is show that there are two stable fixed points that correspond to the phases and one unstable fixed point (you only get back to it if you start exactly there) which corresponds to the critical point.
Grading
Add your
You should find that
One particular critical exponent,
where
You should find your critical exponent.
Grading
Add to your document, your critical exponent
Extension
You’ve computed a critical exponent using the renormalization group! There is an alternative approach to computing critical exponents by just looking directly at your data on