<html>
  <head>

    <meta http-equiv="content-type" content="text/html; charset=ISO-8859-1">
  </head>
  <body bgcolor="#FFFFFF" text="#000000">
    <font face="serif">Gentlemen -- some of you seem to be having
      difficulty unravelling the Gauss-Laguerre quadrature problem I
      gave you.&nbsp; To give you a hand, here is my definition of the
      integrand in python...<br>
      <br>
      <font face="Courier New, Courier, monospace">def fofx(x):<br>
        &nbsp;&nbsp;&nbsp; r = x*0.529e-10<br>
        &nbsp;&nbsp;&nbsp; Z = 1.0<br>
        &nbsp;&nbsp;&nbsp; a0 = 0.529e-10<br>
        &nbsp;&nbsp;&nbsp; a = 1.0 / (4.0 *
        math.sqrt(2.0*math.pi))*math.pow(Z/a0,3.0/2.0)<br>
        &nbsp;&nbsp;&nbsp; b = 2.0 - Z/a0*r<br>
        &nbsp;&nbsp;&nbsp; c = math.exp(-(Z/a0*r)/2.0)<br>
        &nbsp;&nbsp;&nbsp; psi = a*b*c<br>
        &nbsp;&nbsp;&nbsp; return psi*psi*math.pow(r,3)</font><br>
      <br>
      <br>
      and my gaussian quadrature summation in python looks like<br>
      <br>
      <font face="Courier New, Courier, monospace">sum +=&nbsp; W[i] *
        fofx(X[i]) * math.exp(X[i])</font><br>
      <br>
      where the W[i] and X[i] are the weights and abscissi respectively.<br>
      <br>
      &nbsp; <br>
    </font>
    <pre class="moz-signature" cols="72">-- 
Andrew J. Pounds, Ph.D.  (<a class="moz-txt-link-abbreviated" href="mailto:pounds_aj@mercer.edu">pounds_aj@mercer.edu</a>)
Professor of Chemistry and Computer Science
Mercer University,  Macon, GA 31207   (478) 301-5627
<a class="moz-txt-link-freetext" href="http://faculty.mercer.edu/pounds_aj">http://faculty.mercer.edu/pounds_aj</a>
</pre>
  </body>
</html>