Chapter 13 - Hydrogen functions
Start with some imports fro Symbolic Python library:
from sympy.physics.hydrogen import R_nl
from sympy.functions.special.spherical_harmonics import Ynm
from sympy import *Define some variables, radial, polar, azimuthal, time, and two frequencies:
var("r theta phi t w1 w2")Look at a few of the radial equations and the spherical harmonics¶
Notice that instead of Ylm the name is Ynm... the arguments to the function are still the quantum numbers l and m
R_nl(1, 0, r, 1) # the n = 1, l = 0 radial functionYnm(0,0,theta,phi).expand(func=True) # the l = 0, m = 0 spherical harmonicWrite the equation for the state. Use the sympy method .expand(func=True) to convert to the actual expression. To create this state, we combine the Radial function and the Ylm function. Make sure to set n, l, and m to the correct values. The fourth argument to R_nl is Z which we set to 1 since we are talking about a 1-proton nucleus.
The combination of R_nl and Ynm should look like the following (replace N, L, and M with the appropriate values):
R_nl(N, L, r, 1)*Ynm(L, M, theta, phi).expand(func=True)
# this is the |100> state:
psi100 = R_nl(1, 0, r, 1)*Ynm(0,0,theta,phi).expand(func=True)psi100 # check to see how it looks as an expressionIntegrating over all space¶
Remember spherical coordinate integrals of function over all space look like:
so you alwasy need to add a factor of r**2*sin(theta) and then integrate r from 0 to infinity, theta from and phi from . As a check, you should integrate the square of the psi100 wavefunction over all space to see that it equals 1 (i.e. it is normalized)
integrate(r**2*sin(theta) * (psi100)**2 ,(r,0,oo),(theta,0,pi),(phi,0,2*pi))Now do the state:¶
psi210 = R_nl(2, 1, r, 1)*Ynm(1,0,theta,phi).expand(func=True)psi210 # check how it looksNote, if you compare these to listed solutions (for example at http://R_nl function is defined in units of . is the Bohr Radius: Bohr radius
psi211 = R_nl(2, 1, r, 1)*Ynm(1,1,theta,phi).expand(func=True)
psi211Now calculate :¶
To calculate we need to convert to spherical coordinates: . The terms in the following integral are the then (in spherical coords) then the wave function squared.
expect = integrate(r**2*sin(theta)* (r*cos(theta)) * (psi100*psi100),(r,0,oo),(theta,0,pi),(phi,0,2*pi))expectNo surprise, the average z position of the electron in the hydrogen atom is 0.
Now for problem 13.21¶
find . Use the same integral, but add a time-dependent piece to each term in the wavefunction, add them together and multiply by the complex conjugate.
psi = 1/sqrt(2)*(psi100*exp(1j*w1*t) + psi210*exp(1j*w2*t))
psi_conj = 1/sqrt(2)*(psi100*exp(-1j*w1*t) + psi210*exp(-1j*w2*t))outer = (psi*psi_conj).simplify()outerexpect2 = integrate(r**2 * sin(theta) * (r*cos(theta)) * outer,(r,0,oo),(theta,0,pi),(phi,0,2*pi))expect2expect2.simplify()We need to interpret this result. First you should show that this expression is simply a constant amplitude factor times , in other words oscillates at frequency w2-w1.
Your assignment:¶
Explore other combinations of states and draw conclusions about the z behavior from the results. You may not be able to get these expressions to simplify, but the important thing is to look for the time dependence and simplify that part.
Does oscillate for any combination of two Hydrogen states ?
Are there restrictions on what n values give oscillating expressions? (hint, to keep it simple, always let one state be the n=1 state)
How does change with different l and m values are used in the state?
Hints for interpreting your results:
What are the relavant frequencies in your expression for and why?
Simplify one of your expressions and write the time dependence in terms of the frequencies w2 and w1.