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

Chemistry 3730 assignment 9 solutions

  1. The particle-in-a-box wavefunctions are

    > psi := (n,L,x) -> sqrt(2/L)*sin(n*Pi*x/L);

    displaymath219



    The perturbing potential is of the form


    > V := x -> A*sin(2*Pi*x/Lambda);

    displaymath220



    We will need to tell Maple that n is an integer:


    > assume(n,integer);


    We now compute the energy shift caused by the perturbation:


    > deltaE := int(psi(n,L,x)*V(x)*psi(n,L,x),x=0..L);

    displaymath221

    > simplify(deltaE);

    displaymath222



  2. The 1s wavefunction is

    > psi1s := (r,theta,phi) -> sqrt(1/(Pi*a0^3))*exp(-r/a0);

    displaymath223



    We will treat the tex2html_wrap_inline237 term as a perturbation:


    V := r -> -e^2/(4*Pi*epsilon0)*k/r^2;

    displaymath224



    The energy correction for the 1s state is calculated by

    > assume(a0>0);
    > deltaE:=int(int(int(
      psi1s(r,theta,phi)*V(r)*psi1s(r,theta,phi)*r^2*sin(theta),
      r=0..infinity),theta=0..Pi),phi=0..2*Pi);

    displaymath225



    The ionization energy is just the energy of the ground state (give or take the sign). The energy of the 1s state is tex2html_wrap_inline239 . This can be rewritten in terms of tex2html_wrap_inline241 :


    > E1s := -hbar^2/(2*a0^2*mu);

    displaymath226



    The ratio of the perturbation to the ground state energy is

    > ratio := deltaE/E1s;

    displaymath227



    We want this ratio to be less than tex2html_wrap_inline243 . This requires k to be less than tex2html_wrap_inline245 . Since tex2html_wrap_inline247 is approximately equal to the mass of the electron, we use this value. The rest of the constants are obtained from tables. We get tex2html_wrap_inline249 . One way to think of this number is that the deviation from the Coulomb law, if there is one, wouldn't become apparent until two particles were within tex2html_wrap_inline251 of each other. This distance is very small on an atomic scale so the deviation wouldn't have much effect on chemical properties.



Marc Roussel
Wed Nov 5 20:16:36 MST 1997