Show code cell content
import mmf_setup;mmf_setup.nbinit()
import logging;logging.getLogger('matplotlib').setLevel(logging.CRITICAL)
%matplotlib inline
import numpy as np, matplotlib.pyplot as plt
This cell adds /home/docs/checkouts/readthedocs.org/user_builds/physics-581-the-standard-model/checkouts/latest/src to your path, and contains some definitions for equations and some CSS for styling the notebook. If things look a bit strange, please try the following:
- Choose "Trust Notebook" from the "File" menu.
- Re-execute this cell.
- Reload the notebook.
How to Renormalize The Schrödinger Equation#
Here we work through the example discussed in [Lepage, 1997], which uses the example of bound states in a spherically symmetric potential, with Coulomb-like behaviour for large radii \(r\rightarrow \infty\), but with “unknown” corrections at short distances \(r\rightarrow 0\):
To do this, I suggest you complete the following tasks:
Get a method to numerically solve the radial Schrödinger equation. You will use this to compute your “experimental” data. Note: this is a little challenging due to the nature of the Coulomb potential being singular at the origin, and long-ranged (falling off slowly \(V(r) \sim 1/r\) at long distances). The following notes have many hints and suggestions, but please try to use them only as needed.
Perform the perturbative analysis discussed in [Lepage, 1997] but following with your own data. If there is anything you don’t know how to do, please ask on the Hypothes.is document so I can help fill in background in class or online.
How to Solve the Schrödinger Equation#
To easily work through the discussion in [Lepage, 1997], we must be able to formulate and solve the Schrödinger equation for spherically symmetric potentials.
Radial Equation#
Spherical symmetry allows use to express this as a simple 1D boundary value problem (BVP) for the radial equation:
Our aim is to satisfy the Schrödinger equation for central potentials in \(d\)-dimensions, which we can do in the usual way by expressing the wavefunction \(\Psi(r, \Omega) = \psi(r)Y_{\lambda}(\Omega)\) in terms of the radial wavefunction \(u(r)\) and the appropriate generalized spherical harmonics \(Y_{\lambda}(\Omega)\):
Details
Here \(\Omega\) is the generalized solid angle. Rotational invariance implies that angular momentum is a good quantum number, so all eigenstates can be factored \(\Psi(r, \Omega) = \psi(r)Y_{\lambda}(\Omega)\) where \(Y_{\lambda}(\Omega)\) is the generalized spherical harmonic on the (\(d-1\))-dimensional sphere and \(\lambda \in \{0, 1, \dots\}\) is the generalized angular momentum:
where \(\Delta_{S^{d-1}}\) is the Laplace-Beltrami operator. Introducing the radial wavefunction \(u(r)\), this becomes quadratic:
This follows after a little algebra from
This can be solved quite simply – but not very accurately – with finite differences. Highly accurate solutions can be obtained by shooting, and we present details in How to Solve the (Radial) Schrödinger Equation about how to do this.
The Essence#
The essential idea is low-energy properties, like the bound state energies \(E_n\), should not be highly sensitive to details about the nature of the potential \(V(r)\) at short distances \(r \ll 1/\Lambda\) where \(\Lambda\) is a large momentum scale.