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

Chemistry 3730 Fall 1998 Test 1 Solutions

  1. See the lab manual for explanations of these calculations.

    eqnarray6

  2. tex2html_wrap_inline132 must be at least as large as m. Therefore tex2html_wrap_inline136 so that the minimum value of tex2html_wrap_inline138 is tex2html_wrap_inline140 .
  3. Since the box is one-dimensional, this is a problem in two coordinates, tex2html_wrap_inline142 and tex2html_wrap_inline144 :

    displaymath146

    The solutions must satisfy

    displaymath148

  4. We must first define the wavefunction:
    > psi := (n,x) -> sqrt(2/L)*sin(n*Pi*x/L);

    displaymath110

    For n=1:

    > int(psi(1,x)^2,x=3*L/8..5*L/8);

    displaymath111

    > evalf(%);

    displaymath112

    For n=2:

    > int(psi(2,x)^2,x=3*L/8..5*L/8);

    displaymath113

    > evalf(%);

    displaymath114

    The probability is much greater for n=1 than for n=2 because in the latter case the range of integration includes a wavefunction node.

  5. I have already defined the wavefunction and I did all the calculations in the same worksheet so I didn't have to do that again.

    To calculate tex2html_wrap_inline158 :

    > int(psi(1,x)*(x-L/2)*psi(1,x),x=0..L);

    displaymath115

    tex2html_wrap_inline160 :

    > int(psi(1,x)*(x-L/2)^2*psi(1,x),x=0..L);

    displaymath116

    tex2html_wrap_inline162 :

    > int(psi(1,x)*(x-L/2)^3*psi(1,x),x=0..L);

    displaymath115

    Note that the odd moments ( tex2html_wrap_inline164 with q odd) are all zero. This is a general property of distributions which are symmetric about their mean.

  6. The kinetic energy is tex2html_wrap_inline168 , the particle-in-a-box energy:

    eqnarray47

    The transition energy from level n to n+1 is

    eqnarray59

    This is enormously smaller than the kinetic energy so quantum effects (like the discreteness of the energy levels) should not be detectable.

  7. Define the (approximate) wavefunction:
    > phi:=x->A*x*(L-x);

    displaymath118

    The wavefunction is normalized if the integral of the probability density is 1:

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

    displaymath119

    > solve(N=1,A);

    displaymath120

    Either one of these is an acceptable normalization factor. The sign is not physically significant.



Marc Roussel
Mon Oct 5 14:44:59 MDT 1998