4.5.5. The Uncertainty Principle and Applications of Particle in a Box#

4.5.5.1. Motivation:#

The uncertainty principle is another important outcome of treating particles using quantum mechanics. It states that we cannot know both the position and momemtum of a quantum particle with complete certainty. We will show how this relationship can be derived from the results of the 1D particle in a box. Additionally, we will show how the particle in a box model can be applied to make predictions on real systems.

4.5.5.2. Learning Goals:#

After working through these notes, you will be able to:

  1. Write out the mathematical relationship of the uncertainty principle

  2. Describe, qualitatively, the meaning of the uncertainty princtiple

  3. Use a 1D particle in a box model to estimate the electronic absorption spectrum of butadiene

  4. Use a 2D particle in a box model to estimate the electronic absorption spectrum of porphoryn

4.5.5.3. Coding Concepts:#

The following coding concepts are used in this notebook:

  1. Variables

  2. Functions

  3. Plotting with matplotlib

4.5.5.4. The Uncertainty Principle#

The uncertainty principle states that, for a quatum/wave-like particle, the momentum and the position cannot both be known with complete certainty. Mathematically, this can be written as

(4.751)#σxσp2,

where σx is the uncertainty in position and σp is the uncertainty in momentum. We can derive this relationship for the particle in a box.

To compute σx, we recognize that

(4.752)#σx=σx2=x2x2

Recall that (from the notes on Particle in a Box)

(4.753)#x=a2x2=a23a22(nπ)2

Thus,

(4.754)#σx=a2πnπ2n232

This equation for σx quantifies the uncertainty in x. This can be interpreted as the certainty one has in measuring the position of a particle in a box. Notice that this quantity is proportional to a meaning that as you increase the size of the box you increase the uncertainty in x. For a free particle, or a particle not confined in a box, you would have infinite uncertainty in position.

To compute σp, we recognize that analagous to σx

(4.755)#σp=σp2=p2p2

Again, we have estimated these in previous notes (Particle in a Box) or for an excercise and got

(4.756)#p=0p2=n2π22a2

Thus,

(4.757)#σp=nπha

Combined, these two results give that, for a particle in a 1D box

(4.758)#σxσp=a2πnπ2n232nπa=2π2n232
Hide code cell source
# plot probabilities
import numpy as np
import matplotlib.pyplot as plt
%matplotlib inline
def uncertainty_term(n):
    return np.sqrt(np.pi**2*n**2/3-2)
# make an array containing domain of wavelengths to consider
n = np.arange(1,4)
# setup plot parameters
fig = plt.figure(figsize=(8,4), dpi= 80, facecolor='w', edgecolor='k')
ax = plt.subplot(111)
ax.grid(b=True, which='major', axis='both', color='#808080', linestyle='--')
ax.set_xlabel(r'$n$',size=20)
ax.set_ylabel(r'$\sqrt{\frac{\pi^2n^2}{3} -2}$',size=20)
plt.tick_params(axis='both',labelsize=20)
# plot quantum result
ax.plot(n,uncertainty_term(n),'o',markersize=10)
plt.title("Uncertainty Term",fontsize=20)
plt.ylim(0,6);
../../_images/3e785f415da408ee7dbb465a29e2e1f2cf593b886849070c7f2cbda3f1aa15a9.png

We see from the plot above that square root term in the uncertainty equation cannot be less than 1, thus we have

(4.759)#σxσp=2π2n2322

This is the mathematical statement of the (Heisenberg) uncertainty principle. This equation can be rearragned to state

(4.760)#σx2σpσp2σx

These equations demonstrate the inverse relationships between the certainty in x and p. The more certainty one has with x (σx0) the less certainty has with p (σp), and vise versa. This is only true for quatum particles. There is no such relationship for classical particles.

4.5.5.5. Particle in a Box: Applied#

We have spent quite a bit of time discussing the particle in a 1D box problem. The main reason for this is that it is one of the simplest problems that can be analytically solved using the Schrodinger equation. Additionally, it highlights the differences between quantum mechanics and classical mechanics.

There are, however, a few examples for which the particle in a box model is used to fit real experimental data.

  1. Translational motion of ideal gas particles in a finite volume.

  2. Absorption spectra of highly conjugated systems.

It is the latter example that we will consider here.

4.5.5.5.1. Example: Butadiene Absorption Spectrum#

Butadiene (C4H6) is one of the simplest conjugated molecules with. The π orbitals delocalize across the four carbon bonds. The highest occupied molecular orbital (HOMO) is a π orbital. The lowest unoccupied moleculary orbital (LUMO) is a π orbital. When this molecule is hit with a photon of the correct energy, it will excite an electron from the HOMO to the LUMO. This will be the lowest energy band in the electronic excitation spectrum of the molecule. Experimentally, the lowest energy absorption band is found to be 4.61×104 cm1.

Butadiene has 4 π electrons and the motion of these electrons can be modeled as free particles confined to the single dimension of the length of the molecule. In this model, the energy levels allowed for the electrons are given by the 1D particle in a box energy levels

(4.761)#En=h2n28mea2

The length of butadiene is approximately a=578 pm.

The 4 π electrons will occupy the first two (n=1 and n=2) states of this motion. This is because of the Pauli exlusion principle that states that no two electrons (fermions) can occupy the same spin orbit. Thus, the lowest energy excitation of an electron will be from the n=2 to the n=3 state. The energy of this excitation is thus

(4.762)#ΔE=h28mea2(3222)=5h28mea2=5(6.626×1034 Js)28(9.109×1031 kg)(578×1012 m)2=9.02×1019 J

or

(4.763)#ν~=ΔEhc=4.54×104 cm1

This result is in reasonable agreement with the experimentally determined value of 4.61×104 cm1.

print(5*(6.626e-34)**2/(8*9.109e-31*(578e-12)**2)," J")
print(5*(6.626e-34)/(8*9.109e-31*(578e-12)**2)/(2.99792e10)," cm^{-1}")
9.016884392420288e-19  J
45392.597024128336  cm^{-1}

4.5.5.5.2. Example: Porphyrin Absorption Spectrum#

A Porphyrin molecule is a planar conjugated molecule with 26π electron. The molecule is appoximately square with side lengths of 1000pm. Experimentally, the lowest energy absorption band for this molecule is determined to be 17000 cm1. Show that this system can be reasonably approximated as a planar (2D) particle in a box.

The energy levels for a 2D particle in a square box are

(4.764)#Enx,ny=h28mea2(nx2+ny2)

Each of the energy levels is denoted by an ordered pair (nx,ny). The lowest energy state is (1,1) and the second lowest energy level is doubly degenerate with ordered pairs (1,2) and (2,1). There are 26 π electrons so the first 13 energy levels are occupied and the lowest energy excitation will be from the 13th state to the 14th state. Consider the following table

Energy

States

2h28mea2

1: (1,1)

5h28mea2

2: (1,2),(2,1)

8h28mea2

1: (2,2)

10h28mea2

2: (1,3),(3,1)

13h28mea2

2: (2,3),(3,2)

15h28mea2

2: (1,4),(4,1)

18h28mea2

1: (3,3)

20h28mea2

2: (2,4),(4,2)

25h28mea2

2: (3,4),(4,3)

26h28mea2

2: (1,5),(5,1)

So the lowest energy excitation will be from the (2,4) or (4,2) state to the (3,4) or (4,3) state. This will yield an energy difference of

(4.765)#ΔE=h28mea2(2520)=5h28mea2=5(6.626×1034 Js)28(9.109×1031 kg)(1000×1012 m)2=3.01×1019 J

Now for the wavenumber:

(4.766)#ν~=ΔEhc=1.52×104 cm1

Again, this compares reasonably well to the experimentally determined value of 1.7×104 cm1.

print(5*(6.626e-34)**2/(8*9.109e-31*(1000e-12)**2)," J")
print(5*(6.626e-34)/(8*9.109e-31*(1000e-12)**2)/(2.99792e10)," cm^{-1}")
3.0123968053573386e-19  J
15164.940384208889  cm^{-1}