next up previous
Up: Back to the Chemistry 3730 test index

Chemistry 3730 Fall 1998 Test 2 Solutions

  1. Technetium is element number 43.

    displaymath256

  2. The noble gas preceding Tc is Kr. The ground-state electronic configuration of Tc is therefore

    displaymath258

  3. The vibrational frequency is inversely proportional to tex2html_wrap_inline260 . The reduced mass tex2html_wrap_inline260 is approximately equal to the mass of the lighter element in a diatomic molecule when there is a large mass difference. Accordingly, the reduced mass of tex2html_wrap_inline264 is about three times larger than the reduced mass of tex2html_wrap_inline266 so the vibrational frequency is reduced by a factor of tex2html_wrap_inline268 . The fundamental vibrational frequency of tex2html_wrap_inline264 should therefore be about tex2html_wrap_inline272 .
  4. To calculate the average potential energy, we need the inner product

    displaymath274

    > psi2 := x -> (2*alpha/Pi)^(1/4)*(4*alpha*x^2-1)*exp(-alpha*x^2);

    displaymath220

    > V := x -> 1/2*k*x^2;

    displaymath221

    > assume(alpha>0);
    > int(psi2(x)^2*V(x),x=-infinity..infinity);

    displaymath222

    If we substitute the value of tex2html_wrap_inline276 into this expression and simplify, we get tex2html_wrap_inline278 . This is exactly half the energy of this state.

  5. The average value of tex2html_wrap_inline280 is obtained by

    eqnarray64

    > psi2py := (r,theta,phi) ->
    > 1/sqrt(32*Pi*a0^5)*r*exp(-r/(2*a0))*sin(theta)*sin(phi);

    displaymath223

    > assume(a0>0);
    > -I*hbar*int(int(int(psi2py(r,theta,phi)
    > *diff(psi2py(r,theta,phi),phi)*r^2*sin(theta),theta=0..Pi),
    > phi=0..2*Pi),r=0..infinity);

    displaymath224

    Bonus: We obtain real-valued wavefunctions by adding or subtracting wavefunctions with equal and opposite values of tex2html_wrap_inline282 . The resulting wavefunctions are of the form

    displaymath284

    where N is a normalization constant ( tex2html_wrap_inline288 ) and the original wavefunctions are assumed to be normalized. The average value of tex2html_wrap_inline280 is obtained by

    eqnarray88

    The inner products tex2html_wrap_inline292 and tex2html_wrap_inline294 are both zero because they are inner products of wavefunctions which are eigenfunctions of a Hermitian operator ( tex2html_wrap_inline296 ) corresponding to different eigenvalues. The other two are normalization integrals so they are both equal to 1. Therefore tex2html_wrap_inline298 .

  6. The variational wavefunction is
    > phi := x -> sin(Pi*x/L) + a*sin(Pi*x/L)^2;

    displaymath225

    We compute the variational energy in pieces.

    > Kip := -hbar^2/(2*m)*int(phi(x)*diff(phi(x),x$2),x=0..L);

    displaymath226

    > V := x -> k/2*(x-L/2)^2;

    displaymath227

    > Vip := int(phi(x)^2*V(x),x=0..L);

    displaymath228

    > ip := int(phi(x)^2,x=0..L);

    displaymath229

    Let us define the parameters before proceeding any further:

    > k:=0.002;

    displaymath230

    > m:=1e-26;

    displaymath231

    > L:=0.3e-9;

    displaymath232

    > h := 6.6261e-34;

    displaymath233

    > hbar := h/(2*Pi);

    displaymath234

    We can now compute the variational energy:

    > Evar := (Kip+Vip)/ip;

    eqnarray155

    > sa:=solve(diff(Evar,a)=0,a);

    displaymath235

    > Evar1 := evalf(subs(a=sa[1],Evar));

    displaymath236

    > Evar2 := evalf(subs(a=sa[2],Evar));

    displaymath237

    Evar2 is the lower energy so it is our approximation to the ground-state energy. Note that the corresponding value of a is small and that the first part of the variational wavefunction is just a particle-in-a-box wavefunction. This means that the solution is very much like that of the particle-in-a-box problem and, by implication, less like the solution of the harmonic oscillator.


next up previous
Up: Back to the Chemistry 3730 test index

Marc Roussel
Tue Nov 17 20:30:25 MST 1998