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

Chemistry 3730 assignment 12 solutions

  1. We have to define the wavefunction, tex2html_wrap_inline681 and tex2html_wrap_inline683 in terms of the underlying parameters of the problem:

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

    displaymath653

    > beta := omega0*mu/hbar;

    displaymath654

    > omega0:=sqrt(k/mu);

    displaymath655

    > assume(k>0); assume(mu>0); assume(hbar>0);


    To confirm that tex2html_wrap_inline685 is a solution, apply the Hamiltonian to this function:


    > -(hbar^2/(2*mu))*diff(psi0(x),x$2)+1/2*k*x^2* psi0(x);

    eqnarray28

    > simplify("/psi0(x));

    displaymath656



    Note that this is tex2html_wrap_inline687 .

    Now, to demonstrate that the wavefunction is normalized,


    > int(psi0(x)^2,x=-infinity..infinity);

    displaymath657



  2. Apply tex2html_wrap_inline689 to tex2html_wrap_inline685 :

    > 1/sqrt(2*mu)*(-I*hbar*diff(psi0(x),x)+I*omega0*mu*x*psi0(x));

    displaymath658



    The only part that matters is the part that depends on x. The rest are constants and we need to normalize this wavefunction anyway.

    > psi1:=N1*x*exp(-beta*x^2/2);

    displaymath659



    To normalize:

    > int(psi1^2,x=-infinity..infinity);

    displaymath660

    > simplify(");

    displaymath661

    > N1:=sqrt(2*k^(3/4)*mu^(3/4)/(hbar^(3/2)*sqrt(Pi)));

    displaymath662



    Verification:

    > combine(simplify(int(psi1^2,x=-infinity..infinity)));

    displaymath657



    Now, to show that this is a solution of Schrodinger's equation:


    > -hbar^2/(2*mu)*diff(psi1,x$2)+1/2*k*x^2*psi1;

    eqnarray189

    > simplify("/psi1);

    displaymath664



    This is tex2html_wrap_inline693 , as expected.


  3. > 1/sqrt(2*mu)*(-I*hbar*diff(psi1,x)-I*omega0*mu*x*psi1);

    eqnarray269

    > simplify(");

    displaymath665



    Give or take normalization, this is tex2html_wrap_inline685 .


  4. > 1/sqrt(2*mu)*(-I*hbar*diff(psi0(x),x)-I*omega0*mu*x*psi0(x));

    displaymath666



    There are no harmonic oscillator wavefunctions with energies lower than tex2html_wrap_inline697 .


Marc Roussel
Fri Nov 28 12:52:42 MST 1997