Atomic and Molecular Physics Homework 1
Chasse_neige
Question 1
The eigenfunctions of a Hydrogen are of the form
(a) Write down the explicit forms of
Where
And
Where
So
Show the two functions respectively
(b) Calculate spatial dependence of the probability current
The probability current
For
For
(c) Use the probability current obtained above to show that the z-component of the magnetic moment of
Question 2
Using
(a) You should write a Matlab or Mathematica script or any computation script of your preference. Use
Under the
For
Using the basis of
The Hamiltonian matrix can be obtained as
For diagonals, the x and y components of the spin operator is 0, so the Hamiltonian is
For non-diagonals,the x and y components of the spin operator is non-zero only if the spin state
or
The Hamiltonian therefore equals
The Matlab script for calculating the Hamiltonian is as follows
% 参数
A = 3.417341305452145; % GHz * h
g_J = 2.00233113;
g_I = -0.0009951414;
mu_B = 0.001399624; % GHz/G * h
B_z = 0.001; % G
% 基矢状态
states = [
-0.5, -1.5;
-0.5, -0.5;
-0.5, 0.5;
-0.5, 1.5;
0.5, -1.5;
0.5, -0.5;
0.5, 0.5;
0.5, 1.5
];
%哈密顿量
N = 8;
H = zeros(N);
for i = 1:N
mJ_i = states(i,1);
mI_i = states(i,2);
% 对角元
H(i,i) = A * mJ_i * mI_i + mu_B * B_z * (g_J * mJ_i + g_I * mI_i);
for j = i+1:N
mJ_j = states(j,1);
mI_j = states(j,2);
% 检查非对角元条件
if mJ_i - mJ_j == -1 && mI_i - mI_j == 1 % I_+ J_- 情况
factor = sqrt( (1/2)*(3/2) - mJ_j*(mJ_j-1) ) * sqrt( (3/2)*(5/2) - mI_j*(mI_j+1) );
H(i,j) = 1/2 * A * factor;
H(j,i) = H(i,j);
elseif mJ_i - mJ_j == 1 && mI_i - mI_j == -1 % I_- J_+ 情况
factor = sqrt( (1/2)*(3/2) - mJ_j*(mJ_j+1) ) * sqrt( (3/2)*(5/2) - mI_j*(mI_j-1) );
H(i,j) = 1/2 * A * factor;
H(j,i) = H(i,j);
end
end
end
%对角化
[V, D] = eig(H);
eigenvalues = diag(D);
[eigenvalues_sorted, sort_idx] = sort(eigenvalues);
eigenvectors_sorted = V(:, sort_idx);The results show that the Matrix representation of the Hamiltonian is (when the magnetic field is 0)
The eigenvector matrix is
and the eigenvalue matrix is
(b) When B=0, write down all
For the results given by the Clebsch-Gordan coefficients,

We can see from the table that
are exactly the same as those we've calculated apart from some signs of the whole eigenvectors.
For the eigenenergies when
The formula given in the lecture notes show that
When
When
These show that our calculations are corresponding to the formula given in class.
Hint for Question 2:

