2.6: Exercises
( \newcommand{\kernel}{\mathrm{null}\,}\)
Exercises
Exercise 2.6.1
Use the variational theorem to prove that a 1D potential well has at least one bound state. Assume that the potential V(x) satisfies (i) V(x)<0 for all x, and (ii) V(x)→0 for x→±∞. The Hamiltonian is
ˆH=−ℏ22md2dx2+V(x).
Consider a (real) trial wavefunction
ψ(x;γ)=(2γπ)1/4e−γx2.
Note that this can be shown to be normalized to unity, using Gauss’ integral
∫∞−∞dxe−2γx2=√π2γ.
Now prove that
⟨E⟩=∫∞−∞dxψ(x)ˆHψ(x)=ℏ22m∫∞−∞dx(dψdx)2+∫∞−∞dxV(x)ψ2(x)=A√γ[√γ+B∫∞−∞dxV(x)e−γx2],
where A and B are positive real constants to be determined. By looking at the quantity in square brackets in the limit γ→0, argue that ⟨E⟩<0 in this limit. Hence, explain why this implies the existence of a bound state.
Finally, try generalizing this approach to the case of a 2D radially-symmetric potential well V(x,y)=V(r), where r=√x2+y2. Identify which part of the argument fails in 2D. [For a discussion of certain 2D potential wells that do always support bounds states, similar to 1D potential wells, see Simon (1976).]
Exercise 2.6.2
In this problem, you will investigate the existence of bound states in a 3D potential well that is finite, uniform, and spherically-symmetric. The potential function is
V(r,θ,ϕ)=−UΘ(a−r),
where a is the radius of the spherical well, U is the depth, and (r,θ,ϕ) are spherical coordinates defined in the usual way.
The solution involves a variant of the partial wave analysis discussed in Appendix A. For E<0, the Schrödinger equation reduces to
{(∇2+q2)ψ(r,θ,ϕ)=0whereq=√2m(E+U)/ℏ2,forr≤a(∇2−γ2)ψ(r,θ,ϕ)=0whereγ=√−2mE/ℏ2,forr≥a.
For the first equation (called the Helmholtz equation), we seek solutions of the form
ψ(r,θ,ϕ)=f(r)Yℓm(θ,ϕ),
where Yℓm(θ,ϕ) are spherical harmonics, and the integers l and m are angular momentum quantum numbers satisfying l≥0 and −l≤m≤l. Substituting into the Helmholtz equation yields
r2d2fdr2+2rdfdr+[q2r2−l(l+1)]f(r)=0,
which is the spherical Bessel equation. The solutions to this equation that are non-divergent at r=0 are f(r)=jℓ(qr), where jℓ is called a spherical Bessel function of the first kind. Most numerical packages provide functions to calculate these (e.g., scipy.special.spherical_jn
in Scientific Python).
Similarly, solutions for the second equation can be written as ψ(r,θ,ϕ)=g(r)Yℓm(θ,ϕ), yielding an equation for g(r) called the modified spherical Bessel equation. The solutions which do not diverge as r→∞ are g(r)=kℓ(γr), where kℓ is called a modified spherical Bessel function of the second kind. Again, this can be computed numerically (e.g., using scipy.special.spherical_kn
in Scientific Python).
Using the above facts, show that the condition for a bound state to exist is
qj′ℓ(qa)jℓ(qa)=γk′ℓ(γa)kℓ(γa),
where j′ℓ and k′ℓ denote the derivatives of the relevant special functions, and q and γ depend on E and U as described above. Write a program to search for the bound state energies at any given a and U, and hence determine the conditions under which the potential does not support bound states.