How to Renormalize The Schrödinger Equation

Hide 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\):

\[\begin{gather*} \left(\frac{-\hbar^2\nabla^2}{2m} + V(r) - E\right)\Psi(r, \Omega) = 0, \qquad \lim_{r\rightarrow \infty} V(r) \rightarrow \frac{-\alpha}{r}. \end{gather*}\]

To do this, I suggest you complete the following tasks:

  1. 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.

  2. 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)\):

\[\begin{gather*} \left(\frac{-\hbar^2\nabla^2}{2m} + V(r) - E\right)\Psi(r, \Omega) = 0, \\ \left[ \frac{\hbar^2}{2m} \underbrace{ \left(-\diff[2]{}{r} + \frac{\nu^2 - 1/4}{r^2}\right) }_{\op{K}} + V(r)\right]u(r) = E u(r),\\ u(r) = r^{(d-1)/2}\psi(r), \qquad \nu = \lambda + \frac{d}{2} - 1. \end{gather*}\]

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.