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:
Write out the mathematical relationship of the uncertainty principle
Describe, qualitatively, the meaning of the uncertainty princtiple
Use a 1D particle in a box model to estimate the electronic absorption spectrum of butadiene
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:
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
where
To compute
Recall that (from the notes on Particle in a Box)
Thus,
This equation for
To compute
Again, we have estimated these in previous notes (Particle in a Box) or for an excercise and got
Thus,
Combined, these two results give that, for a particle in a 1D box
Show 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);

We see from the plot above that square root term in the uncertainty equation cannot be less than 1, thus we have
This is the mathematical statement of the (Heisenberg) uncertainty principle. This equation can be rearragned to state
These equations demonstrate the inverse relationships between the certainty in
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.
Translational motion of ideal gas particles in a finite volume.
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 (C
Butadiene has 4
The length of butadiene is approximately
The 4
or
This result is in reasonable agreement with the experimentally determined value of
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
The energy levels for a 2D particle in a square box are
Each of the energy levels is denoted by an ordered pair
Energy |
States |
---|---|
So the lowest energy excitation will be from the
Now for the wavenumber:
Again, this compares reasonably well to the experimentally determined value of
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}